From 9dc6f69f701e42b30adf7d1b01488f425eaec265 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Sun, 12 Apr 2015 16:32:33 +0300 Subject: Changes, idk... --- eclipse/config/simplefluidtanks.cfg | 135 ++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 eclipse/config/simplefluidtanks.cfg (limited to 'eclipse/config/simplefluidtanks.cfg') diff --git a/eclipse/config/simplefluidtanks.cfg b/eclipse/config/simplefluidtanks.cfg new file mode 100644 index 0000000..cced9ab --- /dev/null +++ b/eclipse/config/simplefluidtanks.cfg @@ -0,0 +1,135 @@ +# Configuration file + +general { + + ########################################################################################################## + # misc + #--------------------------------------------------------------------------------------------------------# + # Basic settings. + ########################################################################################################## + + misc { + # The amount of fluid a tank can hold measured in buckets. + I:bucketsPerTank=16 + + # The amount of fluid a bottle can hold measured in buckets. 0 = Use Forge default. + I:overrideBottleVolume=250 + + # Set to false to disable the wrench recipe. + B:wrenchEnabled=true + } + + ########################################################################################################## + # blocks + #--------------------------------------------------------------------------------------------------------# + # Block properties. + ########################################################################################################## + + blocks { + + tank { + # The amount of hits the block can take before it breaks (-1 = indestructible). + D:hardness=50.0 + + # The blocks resistance to explosions. + D:resistance=1000.0 + } + + valve { + # The amount of hits the block can take before it breaks (-1 = indestructible). + D:hardness=50.0 + + # The blocks resistance to explosions. + D:resistance=1000.0 + } + + } + + ########################################################################################################## + # recipes + #--------------------------------------------------------------------------------------------------------# + # Crafting recipes. + ########################################################################################################## + + recipes { + + tank { + # The blocks/items needed to complete the recipe. Format: [patternId], [modId], [itemId]. Use "-" as the patternId for shapeless recipes. Use "oreDict" as the modId for ore dictionary items. + S:components < + I + oreDict + ingotIron + G + oreDict + blockGlass + > + + # The crafting table pattern for the recipe. Use "-" for empty slots. + S:pattern < + IGI + G-G + IGI + > + + # If this is set to true, the pattern is ignored. + B:shapeless=false + + # The amount of blocks/items the recipe yields. + I:yield=2 + } + + valve { + # The blocks/items needed to complete the recipe. Format: [patternId], [modId], [itemId]. Use "-" as the patternId for shapeless recipes. Use "oreDict" as the modId for ore dictionary items. + S:components < + I + oreDict + ingotIron + S + oreDict + slimeball + T + simplefluidtanks + tankBlock + > + + # The crafting table pattern for the recipe. Use "-" for empty slots. + S:pattern < + ISI + STS + ISI + > + + # If this is set to true, the pattern is ignored. + B:shapeless=false + + # The amount of blocks/items the recipe yields. + I:yield=1 + } + + wrench { + # The blocks/items needed to complete the recipe. Format: [patternId], [modId], [itemId]. Use "-" as the patternId for shapeless recipes. Use "oreDict" as the modId for ore dictionary items. + S:components < + I + oreDict + ingotIron + > + + # The crafting table pattern for the recipe. Use "-" for empty slots. + S:pattern < + -I- + -II + I-- + > + + # If this is set to true, the pattern is ignored. + B:shapeless=false + + # The amount of blocks/items the recipe yields. + I:yield=1 + } + + } + +} + + -- cgit v1.2.3