mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/base.rs')
-rw-r--r--src/block/base.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/block/base.rs b/src/block/base.rs
index ded5ec4..394415a 100644
--- a/src/block/base.rs
+++ b/src/block/base.rs
@@ -19,11 +19,24 @@ make_register! {
"core-shard" => SimpleBlock::new(3, true, cost!(Copper: 1000, Lead: 800));
"core-foundation" => SimpleBlock::new(4, true, cost!(Copper: 3000, Lead: 3000, Silicon: 2000));
"core-nucleus" => SimpleBlock::new(5, true, cost!(Copper: 8000, Lead: 8000, Thorium: 4000, Silicon: 5000));
+ "core-bastion" => SimpleBlock::new(4, true, cost!(Graphite: 1000, Silicon: 1000, Beryllium: 800));
+ "core-citadel" => SimpleBlock::new(5, true, cost!(Silicon: 4000, Beryllium: 4000, Tungsten: 3000, Oxide: 1000));
+ "core-acropolis" => SimpleBlock::new(6, true, cost!(Beryllium: 6000, Silicon: 5000, Tungsten: 5000, Carbide: 3000, Oxide: 3000));
"container" => SimpleBlock::new(2, true, cost!(Titanium: 100));
"vault" => SimpleBlock::new(3, true, cost!(Titanium: 250, Thorium: 125));
"unloader" => ItemBlock::new(1, true, cost!(Titanium: 25, Silicon: 30));
+ "reinforced-container" => SimpleBlock::new(2, true, cost!(Tungsten: 30, Graphite: 40));
+ "reinforced-vault" => SimpleBlock::new(3, true, cost!(Tungsten: 125, Thorium: 70, Beryllium: 100));
"illuminator" => LampBlock::new(1, true, cost!(Lead: 8, Graphite: 12, Silicon: 8));
"launch-pad" => SimpleBlock::new(3, true, cost!(Copper: 350, Lead: 200, Titanium: 150, Silicon: 140));
+ "radar" => SimpleBlock::new(1, true, cost!(Silicon: 60, Graphite: 50, Beryllium: 10));
+ "build-tower" => SimpleBlock::new(3, true, cost!(Silicon: 150, Oxide: 40, Thorium: 60));
+ "regen-projector" => SimpleBlock::new(3, true, cost!(Silicon: 80, Tungsten: 60, Oxide: 40, Beryllium: 80));
+ // barrier projector
+ // editor only
+ "shockwave-tower" => SimpleBlock::new(3, true, cost!(SurgeAlloy: 50, Silicon: 150, Oxide: 30, Tungsten: 100));
+ "shield-projector" => SimpleBlock::new(3, true, &[]);
+ "large-shield-projector" => SimpleBlock::new(4, true, &[]);
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]