Ajout GOBLIN
Clement Colmerauer

Clement Colmerauer commited on 2024-12-13 10:18:41
Showing 9 changed files, with 13 additions and 0 deletions.

... ...
@@ -44,6 +44,19 @@ public enum Jobs
44 44
             entry(Ability.VIS, new Integer[]{0,0,0,0,0})
45 45
         ));
46 46
         }
47
+    },
48
+    GOBLIN("GOBLIN")
49
+    { 
50
+        public HashMap<Ability, Integer[]> getAbilityPerLevel(){ 
51
+            return new HashMap(Map.ofEntries(
52
+            entry(Ability.ALC, new Integer[]{1,4,4,4,4}),
53
+            entry(Ability.ATK, new Integer[]{2,3,3,3,4}),
54
+            entry(Ability.CHA, new Integer[]{0,0,0,0,0}),
55
+            entry(Ability.DEF, new Integer[]{0,0,0,1,2}),
56
+            entry(Ability.INT, new Integer[]{2,2,2,2,2}),
57
+            entry(Ability.VIS, new Integer[]{0,0,1,1,1})
58
+        ));
59
+        } 
47 60
     };
48 61
 
49 62
     private final String name;
50 63