mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/extraction.rs')
| -rw-r--r-- | src/block/extraction.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/block/extraction.rs b/src/block/extraction.rs index 237af77..ebea8cc 100644 --- a/src/block/extraction.rs +++ b/src/block/extraction.rs @@ -10,4 +10,10 @@ make_register! "water-extractor" => SimpleBlock::new(2, true, cost!(Copper: 30, Lead: 30, Metaglass: 30, Graphite: 30)); "cultivator" => SimpleBlock::new(2, true, cost!(Copper: 25, Lead: 25, Silicon: 10)); "oil-extractor" => SimpleBlock::new(3, true, cost!(Copper: 150, Lead: 115, Graphite: 175, Thorium: 115, Silicon: 75)); + "vent-condenser" => SimpleBlock::new(3, true, cost!(Graphite: 20, Beryllium: 60)); + "cliff-crusher" => SimpleBlock::new(2, false, cost!(Beryllium: 100, Graphite: 40)); + "plasma-bore" => SimpleBlock::new(2, false, cost!(Beryllium: 40)); + "large-plasma-bore" => SimpleBlock::new(3, false, cost!(Silicon: 100, Oxide: 25, Beryllium: 100, Tungsten: 70)); + "impact-drill" => SimpleBlock::new(4, true, cost!(Silicon: 70, Beryllium: 90, Graphite: 60)); + "eruption-drill" => SimpleBlock::new(5, true, cost!(Silicon: 200, Oxide: 20, Tungsten: 200, Thorium: 120)); ); |