Skip to content

Commit b6e1cb1

Browse files
committed
disease mixer finalized
1 parent 9e08c98 commit b6e1cb1

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Disease Vector item
66
* Rosing Alloy item
77
* Plastanium Crusher
8+
* Dread Mixer
89
* Disease vector bullet for Spectre turret
910
* Dread rust status effect
1011
* Dodge unit (Relayer)
@@ -19,7 +20,7 @@
1920
## Proposed Content
2021
* More environment blocks
2122
* Disease vector bullets for more turrets
22-
* Crafting blocks for disease vector and rosing alloy
23+
* Crafting blocks for rosing alloy
2324
* Shield regen block?
2425
## License
2526
This mod is licensed under [GNU GPL v3](/LICENSE).

assets/bundles/bundle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@ block.overblocks-red-ice-stone.name = Red Ice Stone
1919

2020
block.overblocks-payload-propulsion-tower.name = Payload Propulsion Tower
2121
block.overblocks-plastanium-crusher.name = Plastanium Crusher
22+
block.overblocks-disease-mixer.name = Disease Mixer
2223
block.overblocks-plastanium-deflect-wall.name = Plastanium Deflecting Wall
2324
block.overblocks-vampirism.name = Vampirism
2425
block.overblocks-devastation.name = Devastation
2526

2627
#block descriptions
2728
block.overblocks-payload-propulsion-tower.description = Long-range payload transport structure. Shoots payloads to other linked payload propulsion towers.
2829
block.overblocks-plastanium-crusher.description = Produces more plastanium by consuming high amounts of oil and titanium.
30+
block.overblocks-disease-mixer.description = Mixes lead and spore pods into a disease vector.
2931
block.overblocks-plastanium-deflect-wall.description = Protects structures from enemy projectiles, telepathically reflects damage from enemy bullets to their owners.
3032
block.overblocks-vampirism.description = Fires sapping laser beams at enemy targets.
3133
block.overblocks-devastation.description = Fires three massive incendiary laser blasts that damage and burn enemy targets.
Loading

src/overblocks/content/OBTechTree.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public static void load(){
2121
node(plastaniumCrusher);
2222
});
2323

24+
vanillaNode(pyratiteMixer, () -> {
25+
node(diseaseMixer);
26+
});
27+
2428
vanillaNode(phaseWall, () -> {
2529
node(plastaniumDeflectWall, Seq.with(new Research(plastaniumWallLarge)));
2630
});

0 commit comments

Comments
 (0)