From 336256fc7105029707a9f99f9d89d945bc6d7b9a Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 3 Feb 2019 23:08:48 -0500 Subject: [PATCH] Bundle/tech tree fixes --- .../sprites/mechs/mechs/eradicator-leg.png | Bin 234 -> 238 bytes core/assets/bundles/bundle.properties | 5 ++++- .../io/anuke/mindustry/content/TechTree.java | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/core/assets-raw/sprites/mechs/mechs/eradicator-leg.png b/core/assets-raw/sprites/mechs/mechs/eradicator-leg.png index 1941491b60af203dbbd77d694ca1b1b39f67f4af..3a503a2e6a55ae9d4d2c3ef563e8f8f7a9ea9830 100644 GIT binary patch delta 179 zcmV;k08Ibt0qy~iLw_+V!2w4Q0001uNkl0j*~RlM;*;HjmXRxDS75oQf~Bm%Sgkb}tF_h? zEVo@a<)^?(&k19h-7+v%nfMuFW9!1nS|TFaLb&}^jWN4^jVwLQVaI+2wl1^oz>4@H hC>3LGAP9mS*#R0Q9_kSXdf)&6002ovPDHLkV1kf)Pyzq| delta 175 zcmV;g08sz#0qOyeLw_X)-FN(^0001qNklM&dheKabEq{E1f&e0GfP;N1fh8T(9|BwkW z7J6GKAtlAYz`(%p;@LA4{y?`b25*R=humm6Hmn>rX+p!m7AUZ*R?Q;HQ3DcUxEwMH dM!_h60sw#v9MkplcESJv002ovPDHLkV1m_!Nq_(V diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index e55cd6222e..61ea8ef661 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -674,8 +674,11 @@ unit.wraith.description = A fast, hit-and-run interceptor unit. unit.fortress.name = Fortress unit.fortress.description = A heavy artillery ground unit. unit.revenant.name = Revenant -unit.revenant.description = A heavy laser platform. unit.eruptor.name = Eruptor +unit.chaos-array.name = Chaos Array +unit.eradicator.name = Eradicator +unit.lich.name = Lich +unit.reaper.name = Reaper tutorial.begin = Your mission here is to eradicate the[LIGHT_GRAY] enemy[].\n\nBegin by[accent] mining copper[]. Tap a copper ore vein near your core to do this. tutorial.drill = Mining manually is inefficient.\n[accent]Drills []can mine automatically.\nPlace one on a copper vein. tutorial.conveyor = [accent]Conveyors[] are used to transport items to the core.\nMake a line of conveyors from the drill to the core. diff --git a/core/src/io/anuke/mindustry/content/TechTree.java b/core/src/io/anuke/mindustry/content/TechTree.java index 6595a95703..4591469f55 100644 --- a/core/src/io/anuke/mindustry/content/TechTree.java +++ b/core/src/io/anuke/mindustry/content/TechTree.java @@ -216,7 +216,9 @@ public class TechTree implements ContentList{ node(rtgGenerator, () -> { node(differentialGenerator, () -> { node(thoriumReactor, () -> { + node(impactReactor, () -> { + }); }); }); });