mindustry logic execution, map- and schematic- parsing and rendering
drill ratios
| -rw-r--r-- | mindus/src/block/ratios.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mindus/src/block/ratios.rs b/mindus/src/block/ratios.rs index e62fe4e..fac5f45 100644 --- a/mindus/src/block/ratios.rs +++ b/mindus/src/block/ratios.rs @@ -210,7 +210,13 @@ rats!(BasicBlock { "oil-extractor": [Water: 9, Sand: 1] => [] // *cough* }); rats!(WallDrillBlock { none }); // more cough -rats!(DrillBlock { none }); +rats!(DrillBlock { + "laser-drill": [Water: 4.8] => [] + "blast-drill": [Water: 6] => [] + "large-plasma-bore": [Nitrogen: 3] => [] + "impact-drill": [Water: 12] => [] + "eruption-drill": [Hydrogen: 4] => [] +}); rats!(MessageLogic { none }); rats!(SwitchLogic { none }); rats!(ProcessorLogic { "hyper-processor": [Cryofluid: 4.8] => [] }); |