diff --git a/src/game/Towers.cpp b/src/game/Towers.cpp index f661a64..c9f9594 100644 --- a/src/game/Towers.cpp +++ b/src/game/Towers.cpp @@ -19,7 +19,7 @@ const std::map, TowerStats> TowerConstants = { {{TowerType::Archer, {3, TowerPath::Top}}, {1, 0, 13}}, {{TowerType::Archer, {4, TowerPath::Top}}, {0.8, 0, 15}}, - {{TowerType::Archer, {2, TowerPath::Bottom}}, {2, 0, 12}}, + {{TowerType::Archer, {2, TowerPath::Bottom}}, {2, 10, 12}}, {{TowerType::Archer, {3, TowerPath::Bottom}}, {2, 0, 13}}, {{TowerType::Archer, {4, TowerPath::Bottom}}, {2, 0, 15}}, @@ -105,7 +105,7 @@ const std::map, TowerStats> TowerConstants = { {{TowerType::Necromancer, {2, TowerPath::Top}}, {1, 0, 14}}, {{TowerType::Necromancer, {3, TowerPath::Top}}, {1, 0, 15}}, - {{TowerType::Necromancer, {3, TowerPath::Bottom}}, {0, 0, 0}}, + {{TowerType::Necromancer, {3, TowerPath::Bottom}}, {0, 30, 0}}, }; const TowerStats* getTowerStats(TowerType type, TowerLevel level) {