Advertisement
Guest User

Untitled

a guest
Sep 6th, 2016
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ~CONFIG_VERSION: 0.1
  4.  
  5. clientside {
  6. # If true all of Tinkers' blocks with contents (tables, basin, drying racks,...) will render their contents in the world
  7. B:renderInventoryInWorld=true
  8.  
  9. # If true tools will show additional info in their tooltips
  10. B:extraTooltips=true
  11.  
  12. # If true tools will enable the forge bucket model on startup and then turn itself off. This is only there so that a fresh install gets the buckets turned on by default.
  13. B:enableForgeBucketModel=false
  14.  
  15. # REQUIRES DEBUG MODULE. Will do nothing if debug module is disabled. If true the texture map will be dumped into the run directory, just like old forge did.
  16. B:dumpTextureMap=false
  17. }
  18.  
  19.  
  20. gameplay {
  21. # Fortune increases drops after harvesting a block with autosmelt
  22. B:AutosmeltFortuneInteraction=true
  23.  
  24. # Adds a recipe that allows you to craft 3 gravel into a flint
  25. B:addFlintRecipe=true
  26.  
  27. # Adds a recipe that allows you to get leather from drying cooked meat
  28. B:addLeatherDryingRecipe=true
  29.  
  30. # Allows the creation of bricks from molten clay
  31. B:allowBrickCasting=true
  32.  
  33. # Pattern and Part chests keep their inventory when harvested.
  34. B:chestsKeepInventory=true
  35.  
  36. # Allows to craft all tool parts of all materials in the part builder, including materials that normally have to be cast with a smeltery.
  37. B:craftCastableMaterials=false
  38.  
  39. # Adds single-use clay casts.
  40. B:enableClayCasts=true
  41.  
  42. # Allows the creation of obsidian in the smeltery, using a bucket of lava and water.
  43. B:obsidianAlloy=true
  44.  
  45. # Determines the ratio of ore to ingot, or in other words how many ingots you get out of an ore. This ratio applies to all ores (including poor and dense). The ratio can be any decimal, including 1.5 and the like, but can't go below 1. THIS ALSO AFFECTS MELTING TEMPERATURE!
  46. D:oreToIngotRatio=2.0
  47.  
  48. # Enables all items, even if the Module needed to obtain them is not active
  49. B:registerAllItems=false
  50.  
  51. # Allows to reuse stencils in the stencil table to turn them into other stencils
  52. B:reuseStencils=true
  53.  
  54. # Players who enter the world for the first time get a Tinkers' Book
  55. B:spawnWithBook=true
  56. }
  57.  
  58.  
  59. worldgen {
  60. # If true slime islands will generate
  61. B:generateSlimeIslands=true
  62.  
  63. # If true slime islands generate in superflat worlds
  64. B:generateIslandsInSuperflat=false
  65.  
  66. # One in every X chunks will contain a slime island
  67. I:slimeIslandRate=730
  68.  
  69. # One in every X chunks will contain a magma island in the nether
  70. I:magmaIslandRate=100
  71.  
  72. # Prevents generation of slime islands in the listed dimensions
  73. I:slimeIslandBlacklist <
  74. -1
  75. 1
  76. >
  77.  
  78. # If true, cobalt ore will generate in the nether
  79. B:genCobalt=true
  80.  
  81. # If true, ardite ore will generate in the nether
  82. B:genArdite=true
  83.  
  84. # Approx Ores per chunk
  85. I:cobaltRate=16
  86. I:arditeRate=16
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement