#Name: powerGeneration.zs #Author: Feed the Beast print("Initializing 'powerGeneration.zs'..."); #clockwork engine recipes.remove(); recipes.addShaped(, [[, , ], [null, , null], [, , ]]); #extra util early generator #--machine block recipes.remove(); #--survival generator recipes.addShaped(.withTag({Type: "extrautils2:generator_survival"}), [[, , ], [, , ], [, , ]]); #coal generators #--actually additions coal recipes.remove(); recipes.addShaped(, [[, , ], [, , ], [, , ]]); #--rftools coal generator recipes.remove(); recipes.addShaped(, [[, , ], [, , ], [, , ]]); #--extra util furnace generator recipes.addShaped(.withTag({Type: "extrautils2:generator"}), [[, , ], [, , ], [, , ]]); #--techreborn generator recipes.remove(); recipes.addShaped(, [[, , ], [, , ], [, , ]]); #oil generator (canola) recipes.remove(); recipes.addShaped(, [[, , ], [, , ], [, , ]]); #culinary recipes.addShaped(.withTag({Type: "extrautils2:generator_culinary"}), [[, , ], [, , ], [, , ]]); #overclocked recipes.addShaped(.withTag({Type: "extrautils2:generator_overclock"}), [[, , ], [, , ], [, , ]]); #potion recipes.addShaped(.withTag({Type: "extrautils2:generator_potion"}), [[.withTag({Potion: "minecraft:invisibility"}), , .withTag({Potion: "minecraft:fire_resistance"})], [, , ], [.withTag({Potion: "minecraft:swiftness"}), , .withTag({Potion: "minecraft:healing"})]]); #explosive recipes.addShaped(.withTag({Type: "extrautils2:generator_tnt"}), [[, , ], [, , ], [, , ]]); #netherstar recipes.addShaped(.withTag({Type: "extrautils2:generator_netherstar"}), [[, , ], [, , ], [, , ]]); #te dynamos recipes.remove(); recipes.remove(); recipes.remove(); recipes.remove(); recipes.addShaped(, [[null, , null], [, , ], [, , ]]); recipes.addShaped(, [[null, , null], [, , ], [, , ]]); recipes.addShaped(, [[null, , null], [, , ], [, , ]]); recipes.addShaped(, [[null, , null], [, , ], [, , ]]); #portable generator recipes.remove(); recipes.addShaped(, [[, , ], [, , ], [, , ]]); #extreme reactors (see extremeReactors.zs) print("Initialized 'powerGeneration.zs'");