feat: add more tower stats

This commit is contained in:
2021-09-28 19:54:29 +02:00
parent 1e35146c4b
commit 9cf3916951

View File

@@ -19,7 +19,7 @@ const std::map<std::pair<TowerType, TowerLevel>, TowerStats> TowerConstants = {
{{TowerType::Archer, {3, TowerPath::Top}}, {1, 0, 13}}, {{TowerType::Archer, {3, TowerPath::Top}}, {1, 0, 13}},
{{TowerType::Archer, {4, TowerPath::Top}}, {0.8, 0, 15}}, {{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, {3, TowerPath::Bottom}}, {2, 0, 13}},
{{TowerType::Archer, {4, TowerPath::Bottom}}, {2, 0, 15}}, {{TowerType::Archer, {4, TowerPath::Bottom}}, {2, 0, 15}},
@@ -105,7 +105,7 @@ const std::map<std::pair<TowerType, TowerLevel>, TowerStats> TowerConstants = {
{{TowerType::Necromancer, {2, TowerPath::Top}}, {1, 0, 14}}, {{TowerType::Necromancer, {2, TowerPath::Top}}, {1, 0, 14}},
{{TowerType::Necromancer, {3, TowerPath::Top}}, {1, 0, 15}}, {{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) { const TowerStats* getTowerStats(TowerType type, TowerLevel level) {