Skip to content

Commit

Permalink
Adding new parameter to new turrets 'skinName'
Browse files Browse the repository at this point in the history
  • Loading branch information
SonjaMcNeilly committed Oct 16, 2023
1 parent 4b34839 commit 8a15b90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/core/src/main/com/csse3200/game/screens/TowerType.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ public enum TowerType {
5, "1000", "images/turret-select/stun-tower-default.png", "images/turret-select/stun-tower-selected.png"),
INCOME("Income Tower", "The Income Tower generates additional in-game currency over time.",
5, "0", "images/turret-select/mine-tower-default.png", "images/turret-select/mine-tower-selected.png"),
PIERCE("Pierce Tower", "The Pierce Tower fires a projectile that pierces through targets and does not dissipate upon contact.",
PIERCE("Pierce Tower", "", "The Pierce Tower fires a projectile that pierces through targets and does not dissipate upon contact.",
6, "0", "images/turret-select/pierce-tower-default.png", "images/turret-select/pierce-tower-selected.png"),
RICOCHET("Ricochet Tower", "The Ricochet Tower fires a projectile that upon contact does damage and changes direction",
RICOCHET("Ricochet Tower", "", "The Ricochet Tower fires a projectile that upon contact does damage and changes direction",
7, "0", "images/turret-select/ricochet-tower-default.png", "images/turret-select/ricochet-tower-selected.png"),
FIREWORK("Firework Tower", "The Firework Tower fires a projectile that splits on contact with its target",
FIREWORK("Firework Tower", "", "The Firework Tower fires a projectile that splits on contact with its target",
8, "0", "images/turret-select/firework-tower-default.png", "images/turret-select/firework-tower-selected.png");

private final String towerName;
Expand Down

0 comments on commit 8a15b90

Please sign in to comment.