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