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 zcmaFG_>OUcbG@PVK}L501_p*+PZ!6Kh{JEEoaSsW5O6V15}b5sTg#P1&PRr-If)1L z9=STQe%_g~_{^M1mu>DH5-63rys78r(a*Y%Cf{wIHc>kzJYnaGrlo5RMyxfJSiSX{ zh|cy{i>J#Ec%A1=o_W{EAZ+Fj$>ikMhfYQ*Dcy3~@i(;BaCcp=j_ujR<8`dt^ftdc m(Dg$}Lo_*Gful+0CZm+9+$%x$ss{`V3=E#GelF{r5}E*zdr$%Z delta 175 zcmaFI_=<6YbG<72-SR)n7#J8jJzX3_A`T}fNU$z$*w!%do>*J!(!cJ{)<>Cgua=&{ zb}8@&!(|6|NxkDnyw^<3G-TRzue^9=5W`t(qSe0Sa7XXCivr34d4_#$5}gnJPvA5Z ztBTf8R6Tm&z<~oF9^Et+`RA}*k1fArVf&p7OS3gHW|>Zh4~S`OSRHm&=~N)IP|^+= hBQCdt8VyVg4LmZJzkV(|#K6G7;OXk;vd$@?2>{iFNq_(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, () -> { + }); }); }); });