Skip to content

Commit

Permalink
About Superconductor
Browse files Browse the repository at this point in the history
  • Loading branch information
SihenZhang committed Jan 28, 2017
1 parent 69febe2 commit 5af7e45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/Mekanism.zs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ mods.buildcraft.AssemblyTable.addRecipe(<Mekanism:GasTank>.withTag({tier:1 as by
mods.buildcraft.AssemblyTable.addRecipe(<Mekanism:GasTank>.withTag({tier:2 as byte}), 50000, [<Mekanism:GasTank>.withTag({tier:1 as byte}) *2,<Creator:compactOsmiumPlate>*4, <minecraft:redstone>*4]);
mods.buildcraft.AssemblyTable.addRecipe(<Mekanism:GasTank>.withTag({tier:3 as byte}), 50000, [<Mekanism:GasTank>.withTag({tier:2 as byte}) *2,<Creator:compactOsmiumPlate>*4, <minecraft:redstone>*4]);

#Cable
recipes.remove(<Mekanism:PartTransmitter>);
recipes.addShaped(<Mekanism:PartTransmitter>, [[<Creator:compactSteelPlate>, <zettaindustries:blockwire>, <Creator:compactSteelPlate>]]);

#Those abandoned kids :-O
recipes.remove(<Mekanism:EnergyCube>);
Expand Down
6 changes: 6 additions & 0 deletions scripts/ZettaIndustries.zs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ mods.thermalexpansion.Furnace.removeRecipe(<zettaindustries:charcoalblock>);
<ore:blockGraphite>.remove(<zettaindustries:BlockGraphite>);
NEI.hide(<zettaindustries:BlockGraphite>);

#superconductor
recipes.remove(<zettaindustries:blockcontroler>);
NEI.hide(<zettaindustries:blockcontroler>);
recipes.remove(<zettaindustries:blockwire>);
recipes.addShaped(<zettaindustries:blockwire> * 18, [[<ThermalExpansion:Frame:5>, <Mekanism:MachineBlock2:11>.withTag({tier: 0, fluidTank: {FluidName: "cryotheum", Amount: 14000}}), <ThermalExpansion:Frame:5>], [<Mekanism:MachineBlock2:11>.withTag({tier: 0, fluidTank: {FluidName: "cryotheum", Amount: 14000}}), <ThermalExpansion:Cell:4>, <Mekanism:MachineBlock2:11>.withTag({tier: 0, fluidTank: {FluidName: "cryotheum", Amount: 14000}})], [<ThermalExpansion:Frame:5>, <Mekanism:MachineBlock2:11>.withTag({tier: 0, fluidTank: {FluidName: "cryotheum", Amount: 14000}}), <ThermalExpansion:Frame:5>]]);

print("Initialized 'ZettaIndustries.zs'");

0 comments on commit 5af7e45

Please sign in to comment.