fix missing byproduct markers
parent
1e1fcba3cb
commit
6d778d16aa
|
|
@ -10,6 +10,7 @@ import satisfactory.items.type.*;
|
|||
import java.util.*;
|
||||
|
||||
public class Database {
|
||||
public static final Item TODO_ITEM = new Ore("TODO ITEM");
|
||||
// BUILDINGS
|
||||
public static final class Buildings {
|
||||
public static final Building ASSEMBLER = new ProductionBuilding("Assembler", 15, assembler());
|
||||
|
|
@ -40,7 +41,7 @@ public class Database {
|
|||
|
||||
private static Map<Item, Integer> blender() {
|
||||
Map<Item, Integer> cost = new HashMap<>();
|
||||
//cost.put(null, null); //FIXME values
|
||||
cost.put(TODO_ITEM, 1); //FIXME values
|
||||
return cost;
|
||||
}
|
||||
|
||||
|
|
@ -110,7 +111,7 @@ public class Database {
|
|||
private static Map<Item, Integer> minerMk3() {
|
||||
Map<Item, Integer> cost = new HashMap<>();
|
||||
cost.put(Database.PortableMiner, 2);
|
||||
//cost.put(null, null); //FIXME values
|
||||
cost.put(TODO_ITEM, 1); //FIXME values
|
||||
return cost;
|
||||
}
|
||||
|
||||
|
|
@ -145,7 +146,7 @@ public class Database {
|
|||
|
||||
private static Map<Item, Integer> resourceWellExtractor() {
|
||||
Map<Item, Integer> cost = new HashMap<>();
|
||||
//cost.put(null, null); // FIXME values
|
||||
cost.put(TODO_ITEM, 1); // FIXME values
|
||||
return cost;
|
||||
}
|
||||
|
||||
|
|
@ -755,7 +756,7 @@ public class Database {
|
|||
// Plastic
|
||||
Recipe recipe = new Recipe(6, false, Buildings.REFINERY);
|
||||
recipe.addInput(CrudeOil, 3);
|
||||
recipe.addOutput(HeavyOilResidue, 1);
|
||||
recipe.addOutput(HeavyOilResidue, 1, true);
|
||||
Plastic.add(recipe, 2);
|
||||
Recipe residualPlastic = new Recipe(6, "Residual Plastic", false, Buildings.REFINERY);
|
||||
residualPlastic.addInput(PolymerResin, 6);
|
||||
|
|
@ -768,7 +769,7 @@ public class Database {
|
|||
// Rubber
|
||||
Recipe recipe = new Recipe(6, false, Buildings.REFINERY);
|
||||
recipe.addInput(CrudeOil, 3);
|
||||
recipe.addOutput(HeavyOilResidue, 2);
|
||||
recipe.addOutput(HeavyOilResidue, 2, true);
|
||||
Rubber.add(recipe, 2);
|
||||
Recipe residualRubber = new Recipe(6, "Residual Rubber", false, Buildings.REFINERY);
|
||||
residualRubber.addInput(PolymerResin, 6);
|
||||
|
|
|
|||
Loading…
Reference in New Issue