checkpoint
This commit is contained in:
43
plus.py
43
plus.py
@@ -14,6 +14,8 @@ class Machines(Enum):
|
||||
Foundry = Machine(name="Foundry")
|
||||
FlexibleBlastFurnace = Machine(name="Flexible Blast Furnace")
|
||||
Reformer = Machine(name="Reformer")
|
||||
WetWasher = Machine(name="Wet Washer")
|
||||
|
||||
|
||||
class Items(Enum):
|
||||
IronIngot = Item(name="Iron Ingot")
|
||||
@@ -85,6 +87,7 @@ class Items(Enum):
|
||||
BrassPipes = Item(name="Brass Pipes")
|
||||
ColdSlag = Item(name="Cold Slag")
|
||||
FanBlades = Item(name="Fan Blades")
|
||||
TailingsSlurry = Item(name="Tailings Slurry")
|
||||
|
||||
class RawResources(Enum):
|
||||
Water = Items.Water
|
||||
@@ -186,7 +189,7 @@ class Recipes(Enum):
|
||||
building=Machines.Sorter,
|
||||
outputs={
|
||||
Items.CrushedZinc: 96.0,
|
||||
Items.CrushedMagnesium: 48.0,
|
||||
Items.Sand: 48.0,
|
||||
Items.CrushedGangue: 60.0,
|
||||
},
|
||||
inputs={Items.CrushedLarrussite: 120.0},
|
||||
@@ -666,5 +669,43 @@ class Recipes(Enum):
|
||||
Items.Water: 15.0,
|
||||
}
|
||||
)
|
||||
# Wet Washer
|
||||
# - Washing
|
||||
WashedIron = Recipe(
|
||||
name="Washed Iron",
|
||||
building=Machines.WetWasher,
|
||||
outputs={
|
||||
Items.CrushedIron: 60.0,
|
||||
Items.TailingsSlurry: 40.0
|
||||
},
|
||||
inputs={
|
||||
Items.SiteriteOre: 40.0,
|
||||
Items.Water: 40.0,
|
||||
}
|
||||
)
|
||||
WashedCopper = Recipe(
|
||||
name="Washed Copper",
|
||||
building=Machines.WetWasher,
|
||||
outputs={
|
||||
Items.CrushedCopper: 36.0,
|
||||
Items.TailingsSlurry: 24.0
|
||||
},
|
||||
inputs={
|
||||
Items.CallaniteOre: 24.0,
|
||||
Items.Water: 24.0,
|
||||
}
|
||||
)
|
||||
WashedTin = Recipe(
|
||||
name="Washed Tin",
|
||||
building=Machines.WetWasher,
|
||||
outputs={
|
||||
Items.CrushedTin: 45.0,
|
||||
Items.TailingsSlurry: 60.0
|
||||
},
|
||||
inputs={
|
||||
Items.SiteriteOre: 60.0,
|
||||
Items.Water: 30.0,
|
||||
}
|
||||
)
|
||||
|
||||
Recipe.model_rebuild()
|
||||
Reference in New Issue
Block a user