Skip to content

Commit 60d3256

Browse files
Merge pull request #15 from LittleBeasts/LIT-129
Lit 129
2 parents 30e0dbd + 588c4d1 commit 60d3256

3 files changed

Lines changed: 13 additions & 22 deletions

File tree

calculationEngine.iml

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/main/java/calculationEngine/entities/CeAttacks.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22

33
public enum CeAttacks {
44

5-
Punch(CeBeastTypes.Fire, 10, 10, 2, 3, "Punch"), //TODO: Add attacks
5+
Punch(CeBeastTypes.PlayerStandard, 10, 10, 2, 20, "Punch"), //TODO: Add attacks
6+
Incinerate(CeBeastTypes.Fire, 15, 8, 0, 5,"Incinerate"),
7+
Drain(CeBeastTypes.Earth, 10, 10, 3, 10, "Drain Sanity"),
8+
Charge(CeBeastTypes.Boss, 20, 5, 2, 5, "Charge Attack"),
9+
Whip(CeBeastTypes.Boss, 12, 8, 5, 7, "Water Whip"),
10+
Scratch(CeBeastTypes.PlayerStandard, 10, 10, 2, 20, "Scratch"),
11+
Swipe(CeBeastTypes.Earth, 15, 10, 1, 15, "Tentacle Swipe"),
12+
Arcane(CeBeastTypes.Earth, 20, 7, 2, 5, "Arcane Blast"),
13+
Sucker(CeBeastTypes.Earth, 12, 10, 8, 15, "Sucker Punch"),
14+
Acid(CeBeastTypes.Water, 10, 10, 5, 15, "Acid Downpour"),
15+
FireBall(CeBeastTypes.Fire, 15, 10, 3, 15, "Fire Ball"),
16+
Bite(CeBeastTypes.PlayerStandard, 10, 10, 3, 20, "Bite"),
617
Flee(CeBeastTypes.PlayerStandard, 0, 0, 0, 0, "Flee"),
718
Catch(CeBeastTypes.PlayerStandard, 10, 10, 2, 3, "Catch");
819

src/main/java/calculationEngine/entities/CeBeastTypes.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ public enum CeBeastTypes {
55
Fire("Water", "Earth"),
66
Water("Earth", "Fire"),
77
Earth("Water", "Fire"),
8+
Boss("All", "None"),
89
PlayerStandard("NONE", "NONE");
910

1011
private final String resistanceId;

0 commit comments

Comments
 (0)