summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarty E. Plummer <hanetzer@startmail.com>2019-09-21 02:41:34 -0500
committerThomas Groman <tgroman@nuegia.net>2019-09-21 00:46:06 -0700
commit11c1442ba99307b356149e36b37e24f279fa0014 (patch)
tree7bf3c4178d4347a169494b826ffa88fc4ced067d
parentf28546269d430b0d4b6be5d1a474d00c5c5d67c5 (diff)
downloadNuegiaContinuumPlus-master.tar
NuegiaContinuumPlus-master.tar.gz
NuegiaContinuumPlus-master.tar.lz
NuegiaContinuumPlus-master.tar.xz
NuegiaContinuumPlus-master.zip
scripts: minecraft: let weedwood be crafted into planksHEADv2.0.0master
Signed-off-by: Marty E. Plummer <hanetzer@startmail.com>
-rw-r--r--.minecraft/scripts/minecraft.zs4
1 files changed, 4 insertions, 0 deletions
diff --git a/.minecraft/scripts/minecraft.zs b/.minecraft/scripts/minecraft.zs
index bc33b8d..3390a53 100644
--- a/.minecraft/scripts/minecraft.zs
+++ b/.minecraft/scripts/minecraft.zs
@@ -95,6 +95,7 @@ recipes.addShapeless(<natura:nether_planks:3> * 2, [<natura:nether_logs:2>]);
recipes.addShapeless(<techreborn:rubber_planks> * 2, [<techreborn:rubber_log>]);
recipes.addShapeless(<traverse:fir_planks> * 2, [<traverse:fir_log>]);
recipes.addShapeless(<thebetweenlands:weedwood_planks> * 2, [<thebetweenlands:log_weedwood:*>]);
+recipes.addShapeless(<thebetweenlands:weedwood_planks> * 2, [<thebetweenlands:weedwood:*>]);
//TE sawmill
mods.thermalexpansion.Sawmill.removeRecipe(<minecraft:log>);
@@ -185,6 +186,7 @@ mods.thermalexpansion.Sawmill.removeRecipe(<techreborn:rubber_log>);
mods.thermalexpansion.Sawmill.removeRecipe(<traverse:fir_log>);
mods.thermalexpansion.Sawmill.removeRecipe(<thebetweenlands:log_weedwood:0>);
mods.thermalexpansion.Sawmill.removeRecipe(<thebetweenlands:log_weedwood:12>);
+mods.thermalexpansion.Sawmill.removeRecipe(<thebetweenlands:weedwood>);
mods.thermalexpansion.Sawmill.addRecipe(<minecraft:planks> * 4, <minecraft:log>, 1500, <thermalfoundation:material:800>, 20);
mods.thermalexpansion.Sawmill.addRecipe(<minecraft:planks> * 4, <minecraft:log>, 1500, <thermalfoundation:material:800>, 50);
mods.thermalexpansion.Sawmill.addRecipe(<minecraft:planks:4> * 4, <minecraft:log2>, 1500, <thermalfoundation:material:800>, 50);
@@ -274,6 +276,7 @@ mods.thermalexpansion.Sawmill.addRecipe(<natura:nether_planks:3> * 4, <natura:n
mods.thermalexpansion.Sawmill.addRecipe(<techreborn:rubber_planks> * 4, <techreborn:rubber_log>, 1500, <thermalfoundation:material:800>, 50);
mods.thermalexpansion.Sawmill.addRecipe(<traverse:fir_planks> * 4, <traverse:fir_log>, 1500, <thermalfoundation:material:800>, 50);
mods.thermalexpansion.Sawmill.addRecipe(<thebetweenlands:weedwood_planks> * 4, <thebetweenlands:log_weedwood:*>, 1500, <thermalfoundation:material:800>, 50);
+mods.thermalexpansion.Sawmill.addRecipe(<thebetweenlands:weedwood_planks> * 4, <thebetweenlands:weedwood>, 1500, <thermalfoundation:material:800>, 50);
//TR sawmill
@@ -365,6 +368,7 @@ mods.techreborn.industrialSawmill.addRecipe(<natura:nether_planks:3> * 6, <therm
mods.techreborn.industrialSawmill.addRecipe(<techreborn:rubber_planks> * 6, <thermalfoundation:material:800>, null, <techreborn:rubber_log>, <liquid:water> * 500, 300, 40).setUseOreDict(false);
mods.techreborn.industrialSawmill.addRecipe(<traverse:fir_planks> * 6, <thermalfoundation:material:800>, null, <traverse:fir_log>, <liquid:water> * 500, 300, 40).setUseOreDict(false);
mods.techreborn.industrialSawmill.addRecipe(<thebetweenlands:weedwood_planks> * 6, <thermalfoundation:material:800>, null, <thebetweenlands:log_weedwood:*>, <liquid:water> * 500, 300, 40).setUseOreDict(false);
+mods.techreborn.industrialSawmill.addRecipe(<thebetweenlands:weedwood_planks> * 6, <thermalfoundation:material:800>, null, <thebetweenlands:weedwood>, <liquid:water> * 500, 300, 40).setUseOreDict(false);
#remove bucket and force into efab
recipes.remove(<minecraft:bucket>);