Skip to content

Commit

Permalink
Added the remaining sprites for more minion types
Browse files Browse the repository at this point in the history
  • Loading branch information
ssl10003 committed Apr 16, 2015
1 parent 5dc3172 commit 4a5c19b
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
Binary file added src/Double Basic Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Juggernaut Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions src/MinionTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

public enum MinionTypes {
//NAME (Health, Attack, Speed, goldValue)
WEAKLING(100, 1, 1, "Basic Minion.png", 1),
WEAKLING(100, 1, 1, "Weakling Minion.png", 1),
BASIC (255, 1, 1, "Basic Minion.png", 2),
SPEEDO (100, 1, 4, "Basic Minion.png", 3),
SUPERSPEEDO (255, 1, 4, "Basic Minion.png", 5),
JUGGERNAUT (1000, 1, 1, "Basic Minion.png", 10),
UNKILLABLE (10000,1,1, "Basic Minion.png", 100),
DOUBLEBASIC(255, 2, 1, "Basic Minion.png", 12),
SUPERKILLER(10, 20, 8, "Basic Minion.png", 100),
MONEYBAGS(350, 1, 2, "Basic Minion.png", 50);
SPEEDO (100, 1, 4, "Speedo Minion.png", 3),
SUPERSPEEDO (255, 1, 4, "Superspeedo Minion.png", 5),
JUGGERNAUT (1000, 1, 1, "Juggernaut Minion.png", 10),
UNKILLABLE (10000,1,1, "Unkillable Minion.png", 100),
DOUBLEBASIC(255, 2, 1, "Double Basic Minion.png", 12),
SUPERKILLER(10, 20, 8, "Superkiller Minion.png", 100),
MONEYBAGS(350, 1, 2, "Moneybags Minion.png", 50);


private int health, attackDamage, movementSpeed, value;
Expand Down
Binary file added src/Moneybags Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Speedo Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Superkiller Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Superspeedo Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Unkillable Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Weakling Minion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4a5c19b

Please sign in to comment.