diff options
author | kekzdealer <kekzdealer@gmail.com> | 2020-04-26 01:51:39 +0200 |
---|---|---|
committer | kekzdealer <kekzdealer@gmail.com> | 2020-04-26 01:51:39 +0200 |
commit | c67bff76ebde860f368328c5e3b23caf1145a2a3 (patch) | |
tree | f3c686de277c7770e6cb32288270f1edbbb0d77d /config/ThaumicTinkerer.cfg | |
parent | d6d6dfa242d87c4488777887c31a3e6f66329946 (diff) | |
download | GT5-Unofficial-c67bff76ebde860f368328c5e3b23caf1145a2a3.tar.gz GT5-Unofficial-c67bff76ebde860f368328c5e3b23caf1145a2a3.tar.bz2 GT5-Unofficial-c67bff76ebde860f368328c5e3b23caf1145a2a3.zip |
fixed recipes for jars and wrote research lore
Diffstat (limited to 'config/ThaumicTinkerer.cfg')
-rw-r--r-- | config/ThaumicTinkerer.cfg | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/config/ThaumicTinkerer.cfg b/config/ThaumicTinkerer.cfg new file mode 100644 index 0000000000..d6519044b7 --- /dev/null +++ b/config/ThaumicTinkerer.cfg @@ -0,0 +1,114 @@ +# Configuration file + +enchantments { + I:"id_enchant.ttinkerer:ascentBoost"=220 + I:"id_enchant.ttinkerer:autoSmelt"=222 + I:"id_enchant.ttinkerer:desintegrate"=223 + I:"id_enchant.ttinkerer:dispersedStrike"=166 + I:"id_enchant.ttinkerer:finalStrike"=168 + I:"id_enchant.ttinkerer:focusedStrike"=169 + I:"id_enchant.ttinkerer:pounce"=170 + I:"id_enchant.ttinkerer:quickDraw"=224 + I:"id_enchant.ttinkerer:shatter"=167 + I:"id_enchant.ttinkerer:shockwave"=171 + I:"id_enchant.ttinkerer:slowFall"=221 + I:"id_enchant.ttinkerer:tunnel"=172 + I:"id_enchant.ttinkerer:valiance"=173 + I:"id_enchant.ttinkerer:vampirism"=225 +} + + +general { + # The number of vertical veins of ore per chunk. Default: 1 [range: 0 ~ 1023, default: 1] + I:"Bedrock Dimension ore density"=1 + + # These blocks will be disallowed for Focus of Dislocation [default: [avaritiaddons:CompressedChest], [avaritiaddons:InfinityChest]] + S:"Focus of Dislocation Blacklist" < + avaritiaddons:CompressedChest + avaritiaddons:InfinityChest + > + + # Disallow Bottomless Pouch inventory for certain dimension ID's [default: []] + S:"Forbidden Dimensions" < + + > + + # Allows crops to be grown using bonemeal. Useful for debug purposes. [default: false] + B:cropsAllowBonemeal.enabled=false + + # Set to true to enable debugging commands. [default: false] + B:debugCommands.enabled=false + + # Set to false to disable imbued fire making cake. For those people who don't like cake [default: true] + B:imbuedFire.cake.enabled=true + + # Set to false to disable imbued fire. [default: true] + B:imbuedFire.enabled=true + + # Set to false to disable imbued fire spreading/acting mechanism. [default: true] + B:imbuedFireSpread.enabled=true + + # Set to true to enable all KAMI stuff [default: true] + B:kami.forceenabled=true + + # Set to true to enable flight in this mod. [default: true] + B:modFlight.enabled=true + + # Set to false to disable usage of ore dictionary metals (tin and copper). [default: true] + B:oreDictMetal.enabled=true + + # Can Thaumic Tinkerer repair Tinkers Construct tools. [default: false] + B:repairTconTools.enabled=false + + # Set to false to disable the crafting recipe for the Tome of Research Sharing. [default: true] + B:shareTome.survival.enabled=true + + # The height of the Soul Heart bar. You can change this if you have a mod that adds a bar in that spot. [range: 0 ~ 256, default: 49] + I:soulHeart.height=49 + + # Set to false to disable the [TT] tooltips in the thauminomicon. [default: true] + B:tooltipIndicators.enabled=true + + ########################################################################################################## + # kami + #--------------------------------------------------------------------------------------------------------# + # These will only be used if KAMI is enabled. + ########################################################################################################## + + kami { + # Set to the dimension id wished for bedrock dimension, or 0 to disable [range: -1023 ~ 1023, default: -19] + I:"Bedrock dimension id"=-19 + + # These ores will not be spawned in the bedrock dimension [default: [oreFirestone]] + S:"Bedrock dimension ore Blacklist" < + oreFirestone + > + + # The Dimension ID for the End, leave at 1 if you don't modify it with another mod/plugin. [range: -1023 ~ 1023, default: 1] + I:dimension.end.id=1 + + # The Dimension ID for the Nether, leave at -1 if you don't modify it with another mod/plugin. [range: -1023 ~ 1023, default: -1] + I:dimension.nether.id=-1 + + # Set to false to remove the phantom blocks displayed by the Worldshaper's Seeing Glass. [default: true] + B:placementMirror.blocks.show=true + } + +} + + +potions { + # Set to the potion id for air potion [range: 30 ~ 1023, default: 86] + I:"Air Potion id"=86 + + # Set to the potion id for earth potion [range: 30 ~ 1023, default: 87] + I:"Earth Potion id"=87 + + # Set to the potion id for fire potion [range: 30 ~ 1023, default: 88] + I:"Fire Potion id"=88 + + # Set to the potion id for water potion [range: 30 ~ 1023, default: 89] + I:"Water Potion id"=89 +} + + |