add alts, refactor recipes
parent
1d5c39b9e5
commit
7e5c0e8e35
|
|
@ -483,6 +483,14 @@ public class Database {
|
||||||
public static final Item TurboMotor = new Part("Turbo Motor", -1);
|
public static final Item TurboMotor = new Part("Turbo Motor", -1);
|
||||||
public static final Item CopperPowder = new Part("Copper Powder", -1);
|
public static final Item CopperPowder = new Part("Copper Powder", -1);
|
||||||
public static final Item PressureConversionCube = new Part("Pressure Conversion Cube", -1);
|
public static final Item PressureConversionCube = new Part("Pressure Conversion Cube", -1);
|
||||||
|
public static final Item NitricAcid = new ProcessedFluid("Nitric Acid");
|
||||||
|
public static final Item PackagedNitricAcid = new ProcessedFluid("Packaged Nitric Acid");
|
||||||
|
public static final Item EmptyFluidTank = new Part("Empty Fluid Tank", -1);
|
||||||
|
public static final Item PlutoniumFuelRod = new Part("Plutonium Fuel Rod", -1);
|
||||||
|
public static final Item EncasedPlutoniumCell = new Part("Encased Plutonium Cell", -1);
|
||||||
|
public static final Item PlutoniumPellet = new Part("Plutonium Pellet", -1);
|
||||||
|
public static final Item NonfissileUranium = new Part("Non-fissile Uranium", -1);
|
||||||
|
public static final Item UraniumWaste = new Part("Uranium Waste", -1);
|
||||||
|
|
||||||
static {
|
static {
|
||||||
{
|
{
|
||||||
|
|
@ -492,28 +500,25 @@ public class Database {
|
||||||
ores.addAll(Arrays.asList(Bauxite, RawQuartz));// TODO: rly?
|
ores.addAll(Arrays.asList(Bauxite, RawQuartz));// TODO: rly?
|
||||||
for (Item ore : ores) {
|
for (Item ore : ores) {
|
||||||
Recipe mk1 = new RecipeBuilder().setDuration(1).setName("Miner Mk1").setIsHandCraftable(false).setBuilding(Buildings.MINER_MK1).addOutput(ore, 1).createRecipe();
|
Recipe mk1 = new RecipeBuilder().setDuration(1).setName("Miner Mk1").setIsHandCraftable(false).setBuilding(Buildings.MINER_MK1).addOutput(ore, 1).createRecipe();
|
||||||
ore.add(mk1);
|
|
||||||
Recipe mk2 = new RecipeBuilder().setDuration(1).setName("Miner Mk2").setIsHandCraftable(false).setBuilding(Buildings.MINER_MK2).addOutput(ore, 2).createRecipe();
|
Recipe mk2 = new RecipeBuilder().setDuration(1).setName("Miner Mk2").setIsHandCraftable(false).setBuilding(Buildings.MINER_MK2).addOutput(ore, 2).createRecipe();
|
||||||
ore.add(mk2);
|
Recipe mk3 = new RecipeBuilder().setDuration(1).setName("Miner Mk3").setIsHandCraftable(false).setBuilding(Buildings.MINER_MK3).addOutput(ore, 4).createRecipe();
|
||||||
//Recipe mk3 = new Recipe(1, "Miner Mk3", false, MINER_MK2);
|
|
||||||
//ore.add(mk3, 3);
|
|
||||||
ore.setPreference(mk2);
|
ore.setPreference(mk2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// fluids
|
// fluids
|
||||||
Set<Item> rawFluids = new HashSet<>(Arrays.asList(CrudeOil, Water));
|
Set<Item> rawFluids = new HashSet<>(Arrays.asList(CrudeOil, Water));
|
||||||
// no common well yet
|
// no common well yet
|
||||||
CrudeOil.add(new RecipeBuilder().setDuration(1).setName("Oil extracting thingy").setIsHandCraftable(false).setBuilding(Buildings.OIL_EXTRACTOR).addOutput(CrudeOil, 2).createRecipe());
|
new RecipeBuilder().setDuration(1).setName("Oil extracting thingy").setIsHandCraftable(false).setBuilding(Buildings.OIL_EXTRACTOR).addOutput(CrudeOil, 2).createRecipe();
|
||||||
//CrudeOil.setPreference();
|
//CrudeOil.setPreference();
|
||||||
Recipe water = new RecipeBuilder().setDuration(1).setName("water pump thingy").setIsHandCraftable(false).setBuilding(Buildings.WATER_EXTRACTOR).addOutput(Water, 2).createRecipe();
|
Recipe water = new RecipeBuilder().setDuration(1).setName("water pump thingy").setIsHandCraftable(false).setBuilding(Buildings.WATER_EXTRACTOR).addOutput(Water, 2).createRecipe();
|
||||||
Water.setPreference(water);
|
Water.setPreference(water);
|
||||||
|
|
||||||
// gases
|
// gases
|
||||||
NitrogenGas.add(new RecipeBuilder().setDuration(1).setName("pressure thingy").setIsHandCraftable(false).setBuilding(Buildings.RESOURCE_WELL_EXTRACTOR).addOutput(NitrogenGas, 1).createRecipe());
|
new RecipeBuilder().setDuration(1).setName("pressure thingy").setIsHandCraftable(false).setBuilding(Buildings.RESOURCE_WELL_EXTRACTOR).addOutput(NitrogenGas, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Iron Ingot
|
// Iron Ingot
|
||||||
IronIngot.add(new RecipeBuilder().setDuration(2).addInput(IronOre, 1).addOutput(IronIngot, 1).setBuilding(Buildings.SMELTER).createRecipe());
|
new RecipeBuilder().setDuration(2).addInput(IronOre, 1).addOutput(IronIngot, 1).setBuilding(Buildings.SMELTER).createRecipe();
|
||||||
Recipe alt = new RecipeBuilder().setDuration(12).setBuilding(Buildings.REFINERY)
|
Recipe alt = new RecipeBuilder().setDuration(12).setBuilding(Buildings.REFINERY)
|
||||||
.setName("Pure Iron Ingot")
|
.setName("Pure Iron Ingot")
|
||||||
.addInput(IronOre, 7)
|
.addInput(IronOre, 7)
|
||||||
|
|
@ -523,7 +528,7 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Copper Ingot
|
// Copper Ingot
|
||||||
CopperIngot.add(new RecipeBuilder().setDuration(2).addInput(CopperOre, 1).addOutput(CopperIngot, 1).setBuilding(Buildings.SMELTER).createRecipe());
|
new RecipeBuilder().setDuration(2).addInput(CopperOre, 1).addOutput(CopperIngot, 1).setBuilding(Buildings.SMELTER).createRecipe();
|
||||||
Recipe alloyIngot = new RecipeBuilder().setName("Coper Alloy Ingot").setDuration(12).setBuilding(Buildings.FOUNDRY)
|
Recipe alloyIngot = new RecipeBuilder().setName("Coper Alloy Ingot").setDuration(12).setBuilding(Buildings.FOUNDRY)
|
||||||
.addInput(CopperOre, 10)
|
.addInput(CopperOre, 10)
|
||||||
.addInput(IronOre, 5)
|
.addInput(IronOre, 5)
|
||||||
|
|
@ -532,20 +537,26 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Caterium Ingot
|
// Caterium Ingot
|
||||||
CateriumIngot.add(new RecipeBuilder().setDuration(4).addInput(CateriumOre, 3).addOutput(CateriumIngot, 1).setBuilding(Buildings.SMELTER).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(CateriumOre, 3).addOutput(CateriumIngot, 1).setBuilding(Buildings.SMELTER).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Steel Ingot
|
// Steel Ingot
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(4).setBuilding(Buildings.FOUNDRY)
|
new RecipeBuilder().setDuration(4).setBuilding(Buildings.FOUNDRY)
|
||||||
.addInput(IronOre, 3)
|
.addInput(IronOre, 3)
|
||||||
.addInput(Coal, 3)
|
.addInput(Coal, 3)
|
||||||
.addOutput(SteelIngot, 3)
|
.addOutput(SteelIngot, 3)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
SteelIngot.add(recipe);
|
new RecipeBuilder().setName("Coke Steel Ingot")
|
||||||
|
.setBuilding(Buildings.FOUNDRY)
|
||||||
|
.addInput(IronOre, 15)
|
||||||
|
.addInput(PetroleumCoke, 15)
|
||||||
|
.addOutput(SteelIngot, 20)
|
||||||
|
.setDuration(12)
|
||||||
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Concrete
|
// Concrete
|
||||||
Concrete.add(new RecipeBuilder().setDuration(4).addInput(Limestone, 3).addOutput(Concrete, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(Limestone, 3).addOutput(Concrete, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
new RecipeBuilder().setName("Wet Concrete")
|
new RecipeBuilder().setName("Wet Concrete")
|
||||||
.setBuilding(Buildings.REFINERY)
|
.setBuilding(Buildings.REFINERY)
|
||||||
.setDuration(3)
|
.setDuration(3)
|
||||||
|
|
@ -553,30 +564,34 @@ public class Database {
|
||||||
.addInput(Water, 5)
|
.addInput(Water, 5)
|
||||||
.addOutput(Concrete, 4)
|
.addOutput(Concrete, 4)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
|
new RecipeBuilder().setName("Fine Concrete")
|
||||||
|
.setBuilding(Buildings.ASSEMBLER)
|
||||||
|
.addInput(Silica, 3)
|
||||||
|
.addInput(Limestone, 12)
|
||||||
|
.addOutput(Concrete, 10)
|
||||||
|
.setDuration(24)
|
||||||
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Iron Plate
|
// Iron Plate
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).addInput(IronIngot, 3).addOutput(IronPlate, 2).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
new RecipeBuilder().setDuration(6).addInput(IronIngot, 3).addOutput(IronPlate, 2).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
IronPlate.add(recipe);
|
new RecipeBuilder().setDuration(24).setName("Steel Coated Plate").setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
||||||
Recipe steelCoated = new RecipeBuilder().setDuration(24).setName("Steel Coated Plate").setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
|
||||||
.addInput(SteelIngot, 3)
|
.addInput(SteelIngot, 3)
|
||||||
.addInput(Plastic, 2)
|
.addInput(Plastic, 2)
|
||||||
.addOutput(IronPlate, 18)
|
.addOutput(IronPlate, 18)
|
||||||
|
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
IronPlate.add(steelCoated);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Iron Rod
|
// Iron Rod
|
||||||
IronRod.add(new RecipeBuilder().setDuration(4).addInput(IronIngot,1).addOutput(IronRod,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(IronIngot, 1).addOutput(IronRod, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Screw
|
// Screw
|
||||||
Screw.add(new RecipeBuilder().setDuration(6).addInput(IronRod,1).addOutput(Screw,4).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(6).addInput(IronRod, 1).addOutput(Screw, 4).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Steel Beam
|
// Steel Beam
|
||||||
SteelBeam.add(new RecipeBuilder().setDuration(4).addInput(SteelIngot,4).addOutput(SteelBeam,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(SteelIngot, 4).addOutput(SteelBeam, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Reinforced Iron Plate
|
// Reinforced Iron Plate
|
||||||
|
|
@ -584,39 +599,33 @@ public class Database {
|
||||||
.addInput(IronPlate, 6)
|
.addInput(IronPlate, 6)
|
||||||
.addInput(Screw, 12).addOutput(ReinforcedIronPlate, 1)
|
.addInput(Screw, 12).addOutput(ReinforcedIronPlate, 1)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
ReinforcedIronPlate.add(recipe);
|
new RecipeBuilder().setDuration(4).setName("Bolted Iron Plate").setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER).addOutput(ReinforcedIronPlate, 3)
|
||||||
Recipe bolted = new RecipeBuilder().setDuration(4).setName("Bolted Iron Plate").setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER).addOutput(ReinforcedIronPlate,3)
|
|
||||||
.addInput(IronPlate, 18)
|
.addInput(IronPlate, 18)
|
||||||
.addInput(Screw, 50).createRecipe();
|
.addInput(Screw, 50).createRecipe();
|
||||||
ReinforcedIronPlate.add(bolted);
|
new RecipeBuilder().setDuration(32).setBuilding(Buildings.ASSEMBLER)
|
||||||
Recipe stiched = new RecipeBuilder().setDuration(32).setBuilding(Buildings.ASSEMBLER)
|
|
||||||
.setName("Stitched Iron Plate")
|
.setName("Stitched Iron Plate")
|
||||||
.addInput(IronPlate, 10)
|
.addInput(IronPlate, 10)
|
||||||
.addInput(Wire, 20)
|
.addInput(Wire, 20)
|
||||||
.addOutput(ReinforcedIronPlate, 3)
|
.addOutput(ReinforcedIronPlate, 3)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
|
|
||||||
ReinforcedIronPlate.setPreference(recipe);
|
ReinforcedIronPlate.setPreference(recipe);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Modular Frame
|
// Modular Frame
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(60).setBuilding(Buildings.ASSEMBLER).addOutput(ModularFrame,2)
|
new RecipeBuilder().setDuration(60).setBuilding(Buildings.ASSEMBLER).addOutput(ModularFrame, 2)
|
||||||
.addInput(ReinforcedIronPlate, 3)
|
.addInput(ReinforcedIronPlate, 3)
|
||||||
.addInput(IronRod, 12).createRecipe();
|
.addInput(IronRod, 12).createRecipe();
|
||||||
ModularFrame.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Steel Pipe
|
// Steel Pipe
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setBuilding(Buildings.CONSTRUCTOR).addOutput(SteelPipe,2)
|
new RecipeBuilder().setDuration(6).setBuilding(Buildings.CONSTRUCTOR).addOutput(SteelPipe, 2)
|
||||||
.addInput(SteelIngot, 3).createRecipe();
|
.addInput(SteelIngot, 3).createRecipe();
|
||||||
SteelPipe.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Encased Industrial Beam
|
// Encased Industrial Beam
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(10).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(10).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(SteelBeam, 4)
|
.addInput(SteelBeam, 4)
|
||||||
.addInput(Concrete, 5).addOutput(EncasedIndustrialBeam, 1).createRecipe();
|
.addInput(Concrete, 5).addOutput(EncasedIndustrialBeam, 1).createRecipe();
|
||||||
EncasedIndustrialBeam.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Heavy Modular Frame
|
// Heavy Modular Frame
|
||||||
|
|
@ -625,20 +634,18 @@ public class Database {
|
||||||
.addInput(SteelPipe, 15)
|
.addInput(SteelPipe, 15)
|
||||||
.addInput(EncasedIndustrialBeam, 5)
|
.addInput(EncasedIndustrialBeam, 5)
|
||||||
.addInput(Screw, 100).addOutput(HeavyModularFrame, 1).createRecipe();
|
.addInput(Screw, 100).addOutput(HeavyModularFrame, 1).createRecipe();
|
||||||
HeavyModularFrame.add(recipe);
|
|
||||||
HeavyModularFrame.setPreference(recipe);
|
HeavyModularFrame.setPreference(recipe);
|
||||||
Recipe heavyEncasedFrame = new RecipeBuilder().setDuration(64).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(64).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(ModularFrame, 8)
|
.addInput(ModularFrame, 8)
|
||||||
.addInput(EncasedIndustrialBeam, 10)
|
.addInput(EncasedIndustrialBeam, 10)
|
||||||
.addInput(SteelPipe, 36)
|
.addInput(SteelPipe, 36)
|
||||||
.addInput(Concrete, 22)
|
.addInput(Concrete, 22)
|
||||||
.addOutput(HeavyModularFrame, 3).createRecipe();
|
.addOutput(HeavyModularFrame, 3).createRecipe();
|
||||||
// TODO: duration = 60/2.812
|
// TODO: duration = 60/2.812
|
||||||
HeavyModularFrame.add(heavyEncasedFrame);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Wire
|
// Wire
|
||||||
Wire.add(new RecipeBuilder().setDuration(4).addInput(CopperIngot,1).addOutput(Wire,2).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(CopperIngot, 1).addOutput(Wire, 2).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
new RecipeBuilder().setName("Fused Wire")
|
new RecipeBuilder().setName("Fused Wire")
|
||||||
.setBuilding(Buildings.ASSEMBLER)
|
.setBuilding(Buildings.ASSEMBLER)
|
||||||
.setDuration(20)
|
.setDuration(20)
|
||||||
|
|
@ -649,83 +656,81 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Cable
|
// Cable
|
||||||
Cable.add(new RecipeBuilder().setDuration(2).addInput(Wire,2).addOutput(Cable,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(2).addInput(Wire, 2).addOutput(Cable, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
Recipe quickWireCable = new RecipeBuilder().setDuration(2).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(2).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Quickwire, 3)
|
.addInput(Quickwire, 3)
|
||||||
.addInput(Rubber, 2)
|
.addInput(Rubber, 2)
|
||||||
.addOutput(Cable, 11).createRecipe();
|
.addOutput(Cable, 11).createRecipe();
|
||||||
// TODO 60/27,5
|
// TODO 60/27,5
|
||||||
Cable.add(quickWireCable);
|
new RecipeBuilder().setName("Coated Cable")
|
||||||
|
.addInput(Wire, 5)
|
||||||
|
.addInput(HeavyOilResidue, 2)
|
||||||
|
.addOutput(Cable, 9)
|
||||||
|
.setBuilding(Buildings.REFINERY)
|
||||||
|
.setDuration(8)
|
||||||
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Copper Sheet
|
// Copper Sheet
|
||||||
CopperSheet.add(new RecipeBuilder().setDuration(6).addInput(CopperIngot,2).addOutput(CopperSheet,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(6).addInput(CopperIngot, 2).addOutput(CopperSheet, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
Recipe steamedCopperSheet = new RecipeBuilder().setDuration(2).setBuilding(Buildings.REFINERY)
|
new RecipeBuilder().setDuration(2).setBuilding(Buildings.REFINERY)
|
||||||
.addInput(CopperIngot, 3)
|
.addInput(CopperIngot, 3)
|
||||||
.addInput(Water, 3)
|
.addInput(Water, 3)
|
||||||
.addOutput(CopperSheet, 3).createRecipe();
|
.addOutput(CopperSheet, 3).createRecipe();
|
||||||
// TODO: duration = 60/22.5
|
// TODO: duration = 60/22.5
|
||||||
|
|
||||||
CopperSheet.add(steamedCopperSheet);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Quickwire
|
// Quickwire
|
||||||
Quickwire.add(new RecipeBuilder().setDuration(5).addInput(CateriumIngot,1).addOutput(Quickwire,5).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(5).addInput(CateriumIngot, 1).addOutput(Quickwire, 5).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Circuit Board
|
// Circuit Board
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(8).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(CopperSheet, 2)
|
.addInput(CopperSheet, 2)
|
||||||
.addInput(Plastic, 4).addOutput(CircuitBoard, 1).createRecipe();
|
.addInput(Plastic, 4).addOutput(CircuitBoard, 1).createRecipe();
|
||||||
CircuitBoard.add(recipe);
|
|
||||||
// TODO: alternative
|
// TODO: alternative
|
||||||
Recipe electrodeCircuitBoard = new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Rubber, 6)
|
.addInput(Rubber, 6)
|
||||||
.addInput(PetroleumCoke, 9)
|
.addInput(PetroleumCoke, 9)
|
||||||
.addOutput(CircuitBoard, 1).createRecipe();
|
.addOutput(CircuitBoard, 1).createRecipe();
|
||||||
CircuitBoard.add(electrodeCircuitBoard);
|
new RecipeBuilder().setDuration(48).setName("Caterium Circuit Board").setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
||||||
Recipe cateriumCircuitBoard = new RecipeBuilder().setDuration(48).setName("Caterium Circuit Board").setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
|
||||||
.addInput(Plastic, 10)
|
.addInput(Plastic, 10)
|
||||||
.addInput(Quickwire, 30)
|
.addInput(Quickwire, 30)
|
||||||
.addOutput(CircuitBoard, 7).createRecipe();
|
.addOutput(CircuitBoard, 7).createRecipe();
|
||||||
CircuitBoard.add(cateriumCircuitBoard);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// A.I. Limiter
|
// A.I. Limiter
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(CopperSheet, 5)
|
.addInput(CopperSheet, 5)
|
||||||
.addInput(Quickwire, 20).addOutput(AILimiter, 1).createRecipe();
|
.addInput(Quickwire, 20).addOutput(AILimiter, 1).createRecipe();
|
||||||
AILimiter.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// High Speed Connector
|
// High Speed Connector
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(16).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(16).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(Quickwire, 56)
|
.addInput(Quickwire, 56)
|
||||||
.addInput(Cable, 10)
|
.addInput(Cable, 10)
|
||||||
.addInput(CircuitBoard, 1).addOutput(HighSpeedConnector, 1).createRecipe();
|
.addInput(CircuitBoard, 1).addOutput(HighSpeedConnector, 1).createRecipe();
|
||||||
HighSpeedConnector.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Biomass
|
// Biomass
|
||||||
Biomass.add(new RecipeBuilder().setDuration(5).addInput(Leaves,10).addOutput(Biomass,5).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(5).addInput(Leaves, 10).addOutput(Biomass, 5).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
Biomass.add(new RecipeBuilder().setDuration(4).addInput(Wood,4).addOutput(Biomass,20).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(4).addInput(Wood, 4).addOutput(Biomass, 20).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
Biomass.add(new RecipeBuilder().setDuration(4).addInput(Mycelia,1).addOutput(Biomass,10).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(4).addInput(Mycelia, 1).addOutput(Biomass, 10).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
Biomass.add(new RecipeBuilder().setDuration(4).addInput(AlienProtein,1).addOutput(Biomass,100).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(4).addInput(AlienProtein, 1).addOutput(Biomass, 100).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Alien Protein
|
// Alien Protein
|
||||||
AlienProtein.add(new RecipeBuilder().setDuration(3).addInput(HogRemains,1).addOutput(AlienProtein,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(3).addInput(HogRemains, 1).addOutput(AlienProtein, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
AlienProtein.add(new RecipeBuilder().setDuration(3).addInput(PlasmaSpitterRemains,1).addOutput(AlienProtein,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(3).addInput(PlasmaSpitterRemains, 1).addOutput(AlienProtein, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
AlienProtein.add(new RecipeBuilder().setDuration(3).addInput(StingerRemains,1).addOutput(AlienProtein,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(3).addInput(StingerRemains, 1).addOutput(AlienProtein, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
AlienProtein.add(new RecipeBuilder().setDuration(3).addInput(HatcherRemains,1).addOutput(AlienProtein,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe()); // TODO CraftBench
|
new RecipeBuilder().setDuration(3).addInput(HatcherRemains, 1).addOutput(AlienProtein, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe(); // TODO CraftBench
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Fabric
|
// Fabric
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(4).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(4).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Mycelia, 1)
|
.addInput(Mycelia, 1)
|
||||||
.addInput(Biomass, 5).addOutput(Fabric, 1).createRecipe();
|
.addInput(Biomass, 5).addOutput(Fabric, 1).createRecipe();
|
||||||
Fabric.add(recipe);
|
new RecipeBuilder().setDuration(2).setBuilding(Buildings.REFINERY)
|
||||||
Recipe alt = new RecipeBuilder().setDuration(2).setBuilding(Buildings.REFINERY)
|
|
||||||
.setName("Polyester Fabric")
|
.setName("Polyester Fabric")
|
||||||
.addInput(PolymerResin, 1)
|
.addInput(PolymerResin, 1)
|
||||||
.addInput(Water, 1)
|
.addInput(Water, 1)
|
||||||
|
|
@ -733,49 +738,44 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Solid Biofuel
|
// Solid Biofuel
|
||||||
SolidBiofuel.add(new RecipeBuilder().setDuration(4).addInput(Biomass,8).addOutput(SolidBiofuel,4).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(Biomass, 8).addOutput(SolidBiofuel, 4).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Rotor
|
// Rotor
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(15).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(15).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(IronRod, 5)
|
.addInput(IronRod, 5)
|
||||||
.addInput(Screw, 25).addOutput(Rotor, 1).createRecipe();
|
.addInput(Screw, 25).addOutput(Rotor, 1).createRecipe();
|
||||||
Rotor.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Stator
|
// Stator
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
Recipe recipe = new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(SteelPipe, 3)
|
.addInput(SteelPipe, 3)
|
||||||
.addInput(Wire, 8).addOutput(Stator, 1).createRecipe();
|
.addInput(Wire, 8).addOutput(Stator, 1).createRecipe();
|
||||||
Stator.add(recipe);
|
|
||||||
Stator.setPreference(recipe);
|
Stator.setPreference(recipe);
|
||||||
Recipe quickwireStator = new RecipeBuilder().setDuration(15).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(15).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(SteelPipe, 4)
|
.addInput(SteelPipe, 4)
|
||||||
.addInput(Quickwire, 15)
|
.addInput(Quickwire, 15)
|
||||||
.addOutput(Stator, 2).createRecipe();
|
.addOutput(Stator, 2).createRecipe();
|
||||||
//TODO 60/8
|
//TODO 60/8
|
||||||
Stator.add(quickwireStator);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Motor
|
// Motor
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Rotor, 2)
|
.addInput(Rotor, 2)
|
||||||
.addInput(Stator, 2).addOutput(Motor, 1).createRecipe();
|
.addInput(Stator, 2).addOutput(Motor, 1).createRecipe();
|
||||||
Motor.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Power Shard
|
// Power Shard
|
||||||
PowerShard.add(new RecipeBuilder().setDuration(8).addInput(GreenPowerSlug,1).addOutput(PowerShard,1).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(8).addInput(GreenPowerSlug, 1).addOutput(PowerShard, 1).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
PowerShard.add(new RecipeBuilder().setDuration(12).addInput(YellowPowerSlug,1).addOutput(PowerShard,2).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(12).addInput(YellowPowerSlug, 1).addOutput(PowerShard, 2).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
PowerShard.add(new RecipeBuilder().setDuration(24).addInput(PurplePowerSlug,1).addOutput(PowerShard,5).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(24).addInput(PurplePowerSlug, 1).addOutput(PowerShard, 5).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Black Powder
|
// Black Powder
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(8).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Coal, 1)
|
.addInput(Coal, 1)
|
||||||
.addInput(Sulfur, 2).addOutput(BlackPowder, 1).createRecipe();
|
.addInput(Sulfur, 2).addOutput(BlackPowder, 1).createRecipe();
|
||||||
BlackPowder.add(recipe);
|
new RecipeBuilder().setName("Fine Black Powder").setDuration(16).setBuilding(Buildings.ASSEMBLER)
|
||||||
Recipe alt = new RecipeBuilder().setName("Fine Black Powder").setDuration(16).setBuilding(Buildings.ASSEMBLER)
|
|
||||||
.addInput(Sulfur, 2)
|
.addInput(Sulfur, 2)
|
||||||
.addInput(CompactedCoal, 1)
|
.addInput(CompactedCoal, 1)
|
||||||
.addOutput(BlackPowder, 4)
|
.addOutput(BlackPowder, 4)
|
||||||
|
|
@ -783,15 +783,14 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Color Catridge
|
// Color Catridge
|
||||||
ColorCatridge.add(new RecipeBuilder().setDuration(6).addInput(FlowerPetals,5).addOutput(ColorCatridge,10).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(6).addInput(FlowerPetals, 5).addOutput(ColorCatridge, 10).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Gas Filter
|
// Gas Filter
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(8).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(Coal, 5)
|
.addInput(Coal, 5)
|
||||||
.addInput(Rubber, 2)
|
.addInput(Rubber, 2)
|
||||||
.addInput(Fabric, 2).addOutput(GasFilter, 1).createRecipe();
|
.addInput(Fabric, 2).addOutput(GasFilter, 1).createRecipe();
|
||||||
GasFilter.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Computer
|
// Computer
|
||||||
|
|
@ -800,13 +799,11 @@ public class Database {
|
||||||
.addInput(Cable, 9)
|
.addInput(Cable, 9)
|
||||||
.addInput(Plastic, 18)
|
.addInput(Plastic, 18)
|
||||||
.addInput(Screw, 52).addOutput(Computer, 1).createRecipe();
|
.addInput(Screw, 52).addOutput(Computer, 1).createRecipe();
|
||||||
Computer.add(recipe);
|
new RecipeBuilder().setDuration(16).setName("Caterium Computer").setIsHandCraftable(false).setBuilding(Buildings.MANUFACTURER)
|
||||||
Recipe alternative = new RecipeBuilder().setDuration(16).setName("Caterium Computer").setIsHandCraftable(false).setBuilding(Buildings.MANUFACTURER)
|
|
||||||
.addInput(CircuitBoard, 7)
|
.addInput(CircuitBoard, 7)
|
||||||
.addInput(Quickwire, 28)
|
.addInput(Quickwire, 28)
|
||||||
.addInput(Rubber, 12).addOutput(Computer, 1).createRecipe();
|
.addInput(Rubber, 12).addOutput(Computer, 1).createRecipe();
|
||||||
Computer.add(alternative);
|
new RecipeBuilder().setName("Crystal Computer").setDuration(64).setBuilding(Buildings.ASSEMBLER)
|
||||||
Recipe crystal = new RecipeBuilder().setName("Crystal Computer").setDuration(64).setBuilding(Buildings.ASSEMBLER)
|
|
||||||
.addInput(CircuitBoard, 8)
|
.addInput(CircuitBoard, 8)
|
||||||
.addInput(CrystalOscillator, 3)
|
.addInput(CrystalOscillator, 3)
|
||||||
.addOutput(Computer, 3)
|
.addOutput(Computer, 3)
|
||||||
|
|
@ -816,96 +813,85 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Super Computer
|
// Super Computer
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(32).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(32).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(Computer, 2)
|
.addInput(Computer, 2)
|
||||||
.addInput(AILimiter, 2)
|
.addInput(AILimiter, 2)
|
||||||
.addInput(HighSpeedConnector, 3)
|
.addInput(HighSpeedConnector, 3)
|
||||||
.addInput(Plastic, 28).addOutput(SuperComputer, 1).createRecipe();
|
.addInput(Plastic, 28).addOutput(SuperComputer, 1).createRecipe();
|
||||||
SuperComputer.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Empty Canister
|
// Empty Canister
|
||||||
EmptyCanister.add(new RecipeBuilder().setDuration(4).addInput(Plastic,2).addOutput(EmptyCanister,4).setBuilding(Buildings.CONSTRUCTOR).createRecipe());
|
new RecipeBuilder().setDuration(4).addInput(Plastic, 2).addOutput(EmptyCanister, 4).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Beacon
|
// Beacon
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(8).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(IronPlate, 3)
|
.addInput(IronPlate, 3)
|
||||||
.addInput(IronRod, 1)
|
.addInput(IronRod, 1)
|
||||||
.addInput(Wire, 15)
|
.addInput(Wire, 15)
|
||||||
.addInput(Cable, 2).addOutput(Beacon, 1).createRecipe();
|
.addInput(Cable, 2).addOutput(Beacon, 1).createRecipe();
|
||||||
Beacon.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Modular Engine
|
// Modular Engine
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(60).setIsHandCraftable(false).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(60).setIsHandCraftable(false).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(Motor, 2)
|
.addInput(Motor, 2)
|
||||||
.addInput(Rubber, 15)
|
.addInput(Rubber, 15)
|
||||||
.addInput(SmartPlating, 2).addOutput(ModularEngine, 1).createRecipe();
|
.addInput(SmartPlating, 2).addOutput(ModularEngine, 1).createRecipe();
|
||||||
ModularEngine.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Adaptive Control Unit
|
// Adaptive Control Unit
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(120).setIsHandCraftable(false).setBuilding(Buildings.MANUFACTURER).addOutput(AdaptiveControlUnit,2)
|
new RecipeBuilder().setDuration(120).setIsHandCraftable(false).setBuilding(Buildings.MANUFACTURER).addOutput(AdaptiveControlUnit, 2)
|
||||||
.addInput(AutomatedWiring, 15)
|
.addInput(AutomatedWiring, 15)
|
||||||
.addInput(CircuitBoard, 10)
|
.addInput(CircuitBoard, 10)
|
||||||
.addInput(HeavyModularFrame, 2)
|
.addInput(HeavyModularFrame, 2)
|
||||||
.addInput(Computer, 2).addOutput(AdaptiveControlUnit, 2).createRecipe();
|
.addInput(Computer, 2).addOutput(AdaptiveControlUnit, 2).createRecipe();
|
||||||
AdaptiveControlUnit.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Nobelisk
|
// Nobelisk
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(20).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(20).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(BlackPowder, 5)
|
.addInput(BlackPowder, 5)
|
||||||
.addInput(SteelPipe, 10).addOutput(Nobelisk, 1).createRecipe();
|
.addInput(SteelPipe, 10).addOutput(Nobelisk, 1).createRecipe();
|
||||||
Nobelisk.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Gas Nobelisk
|
// Gas Nobelisk
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(12).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Nobelisk, 1)
|
.addInput(Nobelisk, 1)
|
||||||
.addInput(Biomass, 10)
|
.addInput(Biomass, 10)
|
||||||
.addOutput(GasNobelisk, 1).createRecipe(); //TODO EquipmentWorkshop
|
.addOutput(GasNobelisk, 1).createRecipe(); //TODO EquipmentWorkshop
|
||||||
GasNobelisk.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Cluster Nobelisk
|
// Cluster Nobelisk
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(24).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(24).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Nobelisk, 3)
|
.addInput(Nobelisk, 3)
|
||||||
.addInput(SmokelessPowder, 4)
|
.addInput(SmokelessPowder, 4)
|
||||||
.addOutput(ClusterNobelisk, 1).createRecipe(); //TODO EquipmentWorkshop
|
.addOutput(ClusterNobelisk, 1).createRecipe(); //TODO EquipmentWorkshop
|
||||||
ClusterNobelisk.add(recipe);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// NobeliskDetonator
|
// NobeliskDetonator
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(80).setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
new RecipeBuilder().setDuration(80).setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
||||||
.addInput(ObjectScanner, 1)
|
.addInput(ObjectScanner, 1)
|
||||||
.addInput(SteelBeam, 10)
|
.addInput(SteelBeam, 10)
|
||||||
.addInput(Cable, 50)
|
.addInput(Cable, 50)
|
||||||
.addOutput(NobeliskDetonator, 1).createRecipe();
|
.addOutput(NobeliskDetonator, 1).createRecipe();
|
||||||
NobeliskDetonator.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Smart Plating
|
// Smart Plating
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(30).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(30).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(ReinforcedIronPlate, 1)
|
.addInput(ReinforcedIronPlate, 1)
|
||||||
.addInput(Rotor, 1).addOutput(SmartPlating, 1).createRecipe();
|
.addInput(Rotor, 1).addOutput(SmartPlating, 1).createRecipe();
|
||||||
SmartPlating.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Automated Wiring
|
// Automated Wiring
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(24).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(24).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Stator, 1)
|
.addInput(Stator, 1)
|
||||||
.addInput(Cable, 20).addOutput(AutomatedWiring, 1).createRecipe();
|
.addInput(Cable, 20).addOutput(AutomatedWiring, 1).createRecipe();
|
||||||
AutomatedWiring.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Versatile Framework
|
// Versatile Framework
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(24).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER).addOutput(VersatileFrameWork,2)
|
new RecipeBuilder().setDuration(24).setIsHandCraftable(false).setBuilding(Buildings.ASSEMBLER).addOutput(VersatileFrameWork, 2)
|
||||||
.addInput(ModularFrame, 1)
|
.addInput(ModularFrame, 1)
|
||||||
.addInput(SteelBeam, 12).addOutput(VersatileFrameWork, 2).createRecipe();
|
.addInput(SteelBeam, 12).addOutput(VersatileFrameWork, 2).createRecipe();
|
||||||
VersatileFrameWork.add(recipe);
|
|
||||||
new RecipeBuilder().setName("Flexible Framework")
|
new RecipeBuilder().setName("Flexible Framework")
|
||||||
.setDuration(16)
|
.setDuration(16)
|
||||||
.addInput(ModularFrame, 1)
|
.addInput(ModularFrame, 1)
|
||||||
|
|
@ -916,19 +902,16 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Fuel
|
// Fuel
|
||||||
Recipe residualFuel = new RecipeBuilder().setDuration(6).setName("Residual Fuel").setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Fuel,4)
|
|
||||||
.addInput(HeavyOilResidue, 6).addOutput(Fuel,1).createRecipe();
|
|
||||||
Fuel.add(residualFuel);
|
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Fuel, 4)
|
Recipe recipe = new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Fuel, 4)
|
||||||
.addInput(CrudeOil, 6)
|
.addInput(CrudeOil, 6)
|
||||||
.addOutput(PolymerResin, 3, true).createRecipe();
|
.addOutput(PolymerResin, 3, true).createRecipe();
|
||||||
Fuel.add(recipe);
|
new RecipeBuilder().setDuration(6).setName("Residual Fuel").setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Fuel, 4)
|
||||||
Recipe diluted = new RecipeBuilder().setName("Diluted Fuel").setDuration(6).setBuilding(Buildings.BLENDER)
|
.addInput(HeavyOilResidue, 6).addOutput(Fuel, 1).createRecipe();
|
||||||
|
new RecipeBuilder().setName("Diluted Fuel").setDuration(6).setBuilding(Buildings.BLENDER)
|
||||||
.addInput(HeavyOilResidue, 5)
|
.addInput(HeavyOilResidue, 5)
|
||||||
.addInput(Water, 10)
|
.addInput(Water, 10)
|
||||||
.addOutput(Fuel, 10)
|
.addOutput(Fuel, 10)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
|
|
||||||
Fuel.setPreference(recipe);
|
Fuel.setPreference(recipe);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
@ -946,88 +929,71 @@ public class Database {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Liquid Biofuel
|
// Liquid Biofuel
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(4).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(LiquidBiofuel,4)
|
new RecipeBuilder().setDuration(4).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(LiquidBiofuel, 4)
|
||||||
.addInput(SolidBiofuel, 6)
|
.addInput(SolidBiofuel, 6)
|
||||||
.addInput(Water, 3).addOutput(LiquidBiofuel, 1).createRecipe();
|
.addInput(Water, 3).addOutput(LiquidBiofuel, 1).createRecipe();
|
||||||
LiquidBiofuel.add(recipe);
|
|
||||||
|
|
||||||
Recipe unpack = new RecipeBuilder().setDuration(2).setBuilding(Buildings.PACKAGER)
|
new RecipeBuilder().setDuration(2).setBuilding(Buildings.PACKAGER)
|
||||||
.addInput(PackagedLiquidBiofuel, 2)
|
.addInput(PackagedLiquidBiofuel, 2)
|
||||||
.addOutput(LiquidBiofuel, 2)
|
.addOutput(LiquidBiofuel, 2)
|
||||||
.addOutput(EmptyCanister, 2, true).createRecipe();
|
.addOutput(EmptyCanister, 2, true).createRecipe();
|
||||||
LiquidBiofuel.add(unpack);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Plastic
|
// Plastic
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Plastic,2)
|
new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Plastic, 2)
|
||||||
.addInput(CrudeOil, 3)
|
.addInput(CrudeOil, 3)
|
||||||
.addOutput(HeavyOilResidue, 1, true).createRecipe();
|
.addOutput(HeavyOilResidue, 1, true).createRecipe();
|
||||||
Plastic.add(recipe);
|
new RecipeBuilder().setDuration(6).setName("Residual Plastic").setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Plastic, 2)
|
||||||
Recipe residualPlastic = new RecipeBuilder().setDuration(6).setName("Residual Plastic").setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Plastic,2)
|
|
||||||
.addInput(PolymerResin, 6)
|
.addInput(PolymerResin, 6)
|
||||||
.addInput(Water, 2).createRecipe();
|
.addInput(Water, 2).createRecipe();
|
||||||
Plastic.add(residualPlastic);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Rubber
|
// Rubber
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Rubber,2)
|
new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Rubber, 2)
|
||||||
.addInput(CrudeOil, 3)
|
.addInput(CrudeOil, 3)
|
||||||
.addOutput(HeavyOilResidue, 2, true).createRecipe();
|
.addOutput(HeavyOilResidue, 2, true).createRecipe();
|
||||||
Rubber.add(recipe);
|
new RecipeBuilder().setDuration(6).setName("Residual Rubber").setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Rubber, 2)
|
||||||
Recipe residualRubber = new RecipeBuilder().setDuration(6).setName("Residual Rubber").setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(Rubber,2)
|
|
||||||
.addInput(PolymerResin, 6)
|
.addInput(PolymerResin, 6)
|
||||||
.addInput(Water, 4).createRecipe();
|
.addInput(Water, 4).createRecipe();
|
||||||
Rubber.add(residualRubber);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Heavy Oil Residue
|
// Heavy Oil Residue
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setBuilding(Buildings.REFINERY)
|
new RecipeBuilder().setDuration(6).setBuilding(Buildings.REFINERY)
|
||||||
.addInput(CrudeOil, 3)
|
.addInput(CrudeOil, 3)
|
||||||
.addOutput(HeavyOilResidue, 4)
|
.addOutput(HeavyOilResidue, 4)
|
||||||
.addOutput(PolymerResin, 2, true)
|
.addOutput(PolymerResin, 2, true)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
HeavyOilResidue.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Petroleum Coke
|
// Petroleum Coke
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(PetroleumCoke,12)
|
new RecipeBuilder().setDuration(6).setIsHandCraftable(false).setBuilding(Buildings.REFINERY).addOutput(PetroleumCoke, 12)
|
||||||
.addInput(HeavyOilResidue, 4).createRecipe();
|
.addInput(HeavyOilResidue, 4).createRecipe();
|
||||||
PetroleumCoke.add(recipe);
|
|
||||||
}
|
}
|
||||||
// TODO: verify below!
|
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).addInput(AluminumIngot,3).addOutput(AlcladAluminumSheet,3).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(6).addInput(AluminumIngot, 3).addOutput(AlcladAluminumSheet, 3).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(CopperIngot, 1).createRecipe();
|
.addInput(CopperIngot, 1).createRecipe();
|
||||||
AlcladAluminumSheet.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(120).addInput(QuartzCristal,36).addOutput(CrystalOscillator,2).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(120).addInput(QuartzCristal, 36).addOutput(CrystalOscillator, 2).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(Cable, 28)
|
.addInput(Cable, 28)
|
||||||
.addInput(ReinforcedIronPlate, 5).createRecipe();
|
.addInput(ReinforcedIronPlate, 5).createRecipe();
|
||||||
|
|
||||||
CrystalOscillator.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(48).addInput(AluminumCasing,32).addOutput(RadioControlUnit,2).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(48).addInput(AluminumCasing, 32).addOutput(RadioControlUnit, 2).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(CrystalOscillator, 1)
|
.addInput(CrystalOscillator, 1)
|
||||||
.addInput(Computer, 1).createRecipe();
|
.addInput(Computer, 1).createRecipe();
|
||||||
|
|
||||||
RadioControlUnit.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(2).addInput(AluminumIngot,3).addOutput(AluminumCasing,2).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
new RecipeBuilder().setDuration(2).addInput(AluminumIngot, 3).addOutput(AluminumCasing, 2).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
AluminumCasing.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).addInput(RawQuartz,5).addOutput(QuartzCristal,3).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
new RecipeBuilder().setDuration(8).addInput(RawQuartz, 5).addOutput(QuartzCristal, 3).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
QuartzCristal.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).addInput(RawQuartz,3).addOutput(Silica,5).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
new RecipeBuilder().setDuration(8).addInput(RawQuartz, 3).addOutput(Silica, 5).setBuilding(Buildings.CONSTRUCTOR).createRecipe();
|
||||||
Silica.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(4).addInput(AluminumScrap,6).setBuilding(Buildings.FOUNDRY)
|
new RecipeBuilder().setDuration(4).addInput(AluminumScrap, 6).setBuilding(Buildings.FOUNDRY)
|
||||||
.addInput(Silica, 5)
|
.addInput(Silica, 5)
|
||||||
.addOutput(AluminumIngot, 4).createRecipe();
|
.addOutput(AluminumIngot, 4).createRecipe();
|
||||||
new RecipeBuilder().setName("Pure Aluminum Ingot")
|
new RecipeBuilder().setName("Pure Aluminum Ingot")
|
||||||
|
|
@ -1038,34 +1004,42 @@ public class Database {
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setBuilding(Buildings.REFINERY)
|
new RecipeBuilder().setDuration(6).setBuilding(Buildings.REFINERY)
|
||||||
.addInput(Bauxite, 12)
|
.addInput(Bauxite, 12)
|
||||||
.addInput(Water, 18)
|
.addInput(Water, 18)
|
||||||
.addOutput(Silica, 5)
|
.addOutput(Silica, 5)
|
||||||
.addOutput(AluminaSolution, 12, true).createRecipe();
|
.addOutput(AluminaSolution, 12, true).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(1).setBuilding(Buildings.REFINERY)
|
new RecipeBuilder().setDuration(1).setBuilding(Buildings.REFINERY)
|
||||||
.addInput(AluminaSolution, 4)
|
.addInput(AluminaSolution, 4)
|
||||||
.addInput(Coal, 2)
|
.addInput(Coal, 2)
|
||||||
.addOutput(AluminumScrap, 6)
|
.addOutput(AluminumScrap, 6)
|
||||||
.addOutput(Water, 2, true).createRecipe();
|
.addOutput(Water, 2, true).createRecipe();
|
||||||
|
new RecipeBuilder().setName("Electrode Aluminum Scrap")
|
||||||
|
.setBuilding(Buildings.REFINERY)
|
||||||
|
.addInput(AluminaSolution, 12)
|
||||||
|
.addInput(PetroleumCoke, 4)
|
||||||
|
.addOutput(AluminumScrap, 20)
|
||||||
|
.addOutput(Water, 7, true)
|
||||||
|
.setDuration(4)
|
||||||
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(6).setBuilding(Buildings.REFINERY)
|
new RecipeBuilder().setDuration(6).setBuilding(Buildings.REFINERY)
|
||||||
.addInput(Sulfur, 5)
|
.addInput(Sulfur, 5)
|
||||||
.addInput(Water, 5)
|
.addInput(Water, 5)
|
||||||
.addOutput(SulfuricAcid, 5).createRecipe();
|
.addOutput(SulfuricAcid, 5).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(150).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(150).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(EncasedUraniumCell, 50)
|
.addInput(EncasedUraniumCell, 50)
|
||||||
.addInput(EncasedIndustrialBeam, 3)
|
.addInput(EncasedIndustrialBeam, 3)
|
||||||
.addInput(ElectromagneticControlRod, 5)
|
.addInput(ElectromagneticControlRod, 5)
|
||||||
.addOutput(UraniumFuelRod, 1).createRecipe();
|
.addOutput(UraniumFuelRod, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(12).setBuilding(Buildings.BLENDER)
|
new RecipeBuilder().setDuration(12).setBuilding(Buildings.BLENDER)
|
||||||
.addInput(Uranium, 10)
|
.addInput(Uranium, 10)
|
||||||
.addInput(Concrete, 3)
|
.addInput(Concrete, 3)
|
||||||
.addInput(SulfuricAcid, 8)
|
.addInput(SulfuricAcid, 8)
|
||||||
|
|
@ -1082,14 +1056,14 @@ public class Database {
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(120).setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setDuration(120).setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(VersatileFrameWork, 5)
|
.addInput(VersatileFrameWork, 5)
|
||||||
.addInput(ElectromagneticControlRod, 5)
|
.addInput(ElectromagneticControlRod, 5)
|
||||||
.addInput(Battery, 10)
|
.addInput(Battery, 10)
|
||||||
.addOutput(MagneticFieldGenerator, 2).createRecipe();
|
.addOutput(MagneticFieldGenerator, 2).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(3).setBuilding(Buildings.BLENDER)
|
new RecipeBuilder().setDuration(3).setBuilding(Buildings.BLENDER)
|
||||||
.addInput(SulfuricAcid, 2.5)
|
.addInput(SulfuricAcid, 2.5)
|
||||||
.addInput(AluminaSolution, 2)
|
.addInput(AluminaSolution, 2)
|
||||||
.addInput(AluminumCasing, 1)
|
.addInput(AluminumCasing, 1)
|
||||||
|
|
@ -1106,19 +1080,19 @@ public class Database {
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(8).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(8).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(AlcladAluminumSheet, 5)
|
.addInput(AlcladAluminumSheet, 5)
|
||||||
.addInput(CopperSheet, 3)
|
.addInput(CopperSheet, 3)
|
||||||
.addOutput(HeatSink, 1).createRecipe();
|
.addOutput(HeatSink, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(80).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(80).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(AdaptiveControlUnit, 2)
|
.addInput(AdaptiveControlUnit, 2)
|
||||||
.addInput(SuperComputer, 1)
|
.addInput(SuperComputer, 1)
|
||||||
.addOutput(AssemblyDirectorSystem, 1).createRecipe();
|
.addOutput(AssemblyDirectorSystem, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(30).setBuilding(Buildings.ASSEMBLER)
|
new RecipeBuilder().setDuration(30).setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Stator, 3)
|
.addInput(Stator, 3)
|
||||||
.addInput(AILimiter, 2)
|
.addInput(AILimiter, 2)
|
||||||
.addOutput(ElectromagneticControlRod, 2).createRecipe();
|
.addOutput(ElectromagneticControlRod, 2).createRecipe();
|
||||||
|
|
@ -1131,7 +1105,7 @@ public class Database {
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(10).setBuilding(Buildings.BLENDER)
|
new RecipeBuilder().setDuration(10).setBuilding(Buildings.BLENDER)
|
||||||
.addInput(HeatSink, 2)
|
.addInput(HeatSink, 2)
|
||||||
.addInput(Rubber, 2)
|
.addInput(Rubber, 2)
|
||||||
.addInput(Water, 5)
|
.addInput(Water, 5)
|
||||||
|
|
@ -1139,21 +1113,21 @@ public class Database {
|
||||||
.addOutput(CoolingSystem, 1).createRecipe();
|
.addOutput(CoolingSystem, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(40).setBuilding(Buildings.BLENDER)
|
new RecipeBuilder().setDuration(40).setBuilding(Buildings.BLENDER)
|
||||||
.addInput(HeavyModularFrame, 1)
|
.addInput(HeavyModularFrame, 1)
|
||||||
.addInput(AluminumCasing, 50)
|
.addInput(AluminumCasing, 50)
|
||||||
.addInput(NitrogenGas, 25)
|
.addInput(NitrogenGas, 25)
|
||||||
.addOutput(FusedModularFrame, 1).createRecipe();
|
.addOutput(FusedModularFrame, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Recipe recipe = new RecipeBuilder().setDuration(40).setIsHandCraftable(true).setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
new RecipeBuilder().setDuration(40).setIsHandCraftable(true).setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
||||||
.addInput(IronPlate, 2)
|
.addInput(IronPlate, 2)
|
||||||
.addInput(IronRod, 2)
|
.addInput(IronRod, 2)
|
||||||
.addOutput(PortableMiner, 1).createRecipe();
|
.addOutput(PortableMiner, 1).createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
//Turbofuel
|
//Turbofuel
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(16)
|
.setDuration(16)
|
||||||
.setBuilding(Buildings.REFINERY)
|
.setBuilding(Buildings.REFINERY)
|
||||||
.addInput(Fuel, 6)
|
.addInput(Fuel, 6)
|
||||||
|
|
@ -1161,7 +1135,6 @@ public class Database {
|
||||||
.addOutput(Turbofuel, 5)
|
.addOutput(Turbofuel, 5)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
//TODO: 60/18,75
|
//TODO: 60/18,75
|
||||||
Turbofuel.add(recipe);
|
|
||||||
Recipe packaged = new RecipeBuilder()
|
Recipe packaged = new RecipeBuilder()
|
||||||
.setDuration(3)
|
.setDuration(3)
|
||||||
.setBuilding(Buildings.PACKAGER)
|
.setBuilding(Buildings.PACKAGER)
|
||||||
|
|
@ -1176,53 +1149,59 @@ public class Database {
|
||||||
.addInput(CompactedCoal, 4)
|
.addInput(CompactedCoal, 4)
|
||||||
.addOutput(Turbofuel, 4)
|
.addOutput(Turbofuel, 4)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
|
new RecipeBuilder().setName("Turbo Blend Fuel")
|
||||||
|
.setBuilding(Buildings.BLENDER)
|
||||||
|
.addInput(Fuel, 2)
|
||||||
|
.addInput(HeavyOilResidue, 4)
|
||||||
|
.addInput(Sulfur, 3)
|
||||||
|
.addInput(PetroleumCoke, 3)
|
||||||
|
.addOutput(Turbofuel, 6)
|
||||||
|
.setDuration(8)
|
||||||
|
.createRecipe();
|
||||||
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Packaged Turbofuel
|
// Packaged Turbofuel
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(3)
|
.setDuration(3)
|
||||||
.setBuilding(Buildings.PACKAGER)
|
.setBuilding(Buildings.PACKAGER)
|
||||||
.addInput(Turbofuel, 2)
|
.addInput(Turbofuel, 2)
|
||||||
.addInput(EmptyCanister, 2)
|
.addInput(EmptyCanister, 2)
|
||||||
.addOutput(PackagedTurboFuel, 2)
|
.addOutput(PackagedTurboFuel, 2)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
PackagedTurboFuel.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Compacted Coal
|
// Compacted Coal
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(12)
|
.setDuration(12)
|
||||||
.setBuilding(Buildings.ASSEMBLER)
|
.setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(Coal, 5)
|
.addInput(Coal, 5)
|
||||||
.addInput(Sulfur, 5)
|
.addInput(Sulfur, 5)
|
||||||
.addOutput(CompactedCoal, 5)
|
.addOutput(CompactedCoal, 5)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
CompactedCoal.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Iron Rebar
|
// Iron Rebar
|
||||||
IronRebar.add(new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(4)
|
.setDuration(4)
|
||||||
.addInput(IronRod, 1)
|
.addInput(IronRod, 1)
|
||||||
.addOutput(IronRebar, 1)
|
.addOutput(IronRebar, 1)
|
||||||
.setBuilding(Buildings.CONSTRUCTOR)
|
.setBuilding(Buildings.CONSTRUCTOR)
|
||||||
.createRecipe());
|
.createRecipe();
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Stun Rebar
|
// Stun Rebar
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(6)
|
.setDuration(6)
|
||||||
.setBuilding(Buildings.ASSEMBLER)
|
.setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(IronRebar, 1)
|
.addInput(IronRebar, 1)
|
||||||
.addInput(Quickwire, 5)
|
.addInput(Quickwire, 5)
|
||||||
.addOutput(StunRebar, 1)
|
.addOutput(StunRebar, 1)
|
||||||
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
||||||
StunRebar.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Explosive Rebar
|
// Explosive Rebar
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(12)
|
.setDuration(12)
|
||||||
.setBuilding(Buildings.MANUFACTURER)
|
.setBuilding(Buildings.MANUFACTURER)
|
||||||
.addInput(IronRebar, 1)
|
.addInput(IronRebar, 1)
|
||||||
|
|
@ -1230,11 +1209,10 @@ public class Database {
|
||||||
.addInput(SteelPipe, 2)
|
.addInput(SteelPipe, 2)
|
||||||
.addOutput(ExplosiveRebar, 1)
|
.addOutput(ExplosiveRebar, 1)
|
||||||
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
||||||
ExplosiveRebar.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Rebar Gun
|
// Rebar Gun
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(60)
|
.setDuration(60)
|
||||||
.setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
.setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
||||||
.addInput(ReinforcedIronPlate, 6)
|
.addInput(ReinforcedIronPlate, 6)
|
||||||
|
|
@ -1242,33 +1220,30 @@ public class Database {
|
||||||
.addInput(Screw, 100)
|
.addInput(Screw, 100)
|
||||||
.addOutput(RebarGun, 1)
|
.addOutput(RebarGun, 1)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
RebarGun.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Rifle Ammo
|
// Rifle Ammo
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(12)
|
.setDuration(12)
|
||||||
.setBuilding(Buildings.ASSEMBLER)
|
.setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(CopperSheet, 3)
|
.addInput(CopperSheet, 3)
|
||||||
.addInput(SmokelessPowder, 2)
|
.addInput(SmokelessPowder, 2)
|
||||||
.addOutput(RifleAmmo, 15)
|
.addOutput(RifleAmmo, 15)
|
||||||
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
||||||
RifleAmmo.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Homing Rifle Ammo
|
// Homing Rifle Ammo
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(12)
|
.setDuration(12)
|
||||||
.setBuilding(Buildings.ASSEMBLER)
|
.setBuilding(Buildings.ASSEMBLER)
|
||||||
.addInput(RifleAmmo, 20)
|
.addInput(RifleAmmo, 20)
|
||||||
.addInput(HighSpeedConnector, 1)
|
.addInput(HighSpeedConnector, 1)
|
||||||
.addOutput(HomingRifleAmmo, 10)
|
.addOutput(HomingRifleAmmo, 10)
|
||||||
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
.createRecipe();//TODO , EQUIPMENT_WORKSHOP)
|
||||||
HomingRifleAmmo.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Rifle
|
// Rifle
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(120)
|
.setDuration(120)
|
||||||
.setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
.setBuilding(Buildings.EQUIPMENT_WORKSHOP)
|
||||||
.addInput(Motor, 2)
|
.addInput(Motor, 2)
|
||||||
|
|
@ -1277,18 +1252,16 @@ public class Database {
|
||||||
.addInput(Screw, 250)
|
.addInput(Screw, 250)
|
||||||
.addOutput(Rifle, 1)
|
.addOutput(Rifle, 1)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
Rifle.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Smokeless Powder
|
// Smokeless Powder
|
||||||
Recipe recipe = new RecipeBuilder()
|
new RecipeBuilder()
|
||||||
.setDuration(6)
|
.setDuration(6)
|
||||||
.setBuilding(Buildings.REFINERY)
|
.setBuilding(Buildings.REFINERY)
|
||||||
.addInput(BlackPowder, 2)
|
.addInput(BlackPowder, 2)
|
||||||
.addInput(HeavyOilResidue, 1)
|
.addInput(HeavyOilResidue, 1)
|
||||||
.addOutput(SmokelessPowder, 2)
|
.addOutput(SmokelessPowder, 2)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
SmokelessPowder.add(recipe);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Coal
|
// Coal
|
||||||
|
|
@ -1506,11 +1479,6 @@ public class Database {
|
||||||
.setDuration(60)
|
.setDuration(60)
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
public static final Item NitricAcid = new ProcessedFluid("Nitric Acid");
|
|
||||||
public static final Item PackagedNitricAcid = new ProcessedFluid("Packaged Nitric Acid");
|
|
||||||
public static final Item EmptyFluidTank = new Part("Empty Fluid Tank", -1);
|
|
||||||
{
|
{
|
||||||
// Nitric Acid
|
// Nitric Acid
|
||||||
new RecipeBuilder().setBuilding(Buildings.BLENDER)
|
new RecipeBuilder().setBuilding(Buildings.BLENDER)
|
||||||
|
|
@ -1557,11 +1525,6 @@ public class Database {
|
||||||
.setDuration(1) // TODO 240/min
|
.setDuration(1) // TODO 240/min
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
public static final Item PlutoniumFuelRod = new Part("Plutonium Fuel Rod", -1);
|
|
||||||
public static final Item EncasedPlutoniumCell = new Part("Encased Plutonium Cell", -1);
|
|
||||||
public static final Item PlutoniumPellet = new Part("Plutonium Pellet", -1);
|
|
||||||
public static final Item NonfissileUranium = new Part("Non-fissile Uranium", -1);
|
|
||||||
public static final Item UraniumWaste = new Part("Uranium Waste", -1);
|
|
||||||
{
|
{
|
||||||
// Plutonium Fuel Rod
|
// Plutonium Fuel Rod
|
||||||
new RecipeBuilder().setBuilding(Buildings.MANUFACTURER)
|
new RecipeBuilder().setBuilding(Buildings.MANUFACTURER)
|
||||||
|
|
@ -1611,5 +1574,5 @@ public class Database {
|
||||||
.setDuration(12) //TODO: 50/min
|
.setDuration(12) //TODO: 50/min
|
||||||
.createRecipe();
|
.createRecipe();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue