44
55public enum CeBeasts {
66
7- FeuerFurz (CeBeastTypes .Fire , 100 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 15 , "StinkenderFeuerFurz" , CeRegions .ArkhamCity ),
8- StinkenderFeuerFurz (CeBeastTypes .Fire , 100 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , Integer .MAX_VALUE , "" , CeRegions .ArkhamCity );
7+ FeuerFurz (CeBeastTypes .Fire , 100 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 15 , "StinkenderFeuerFurz" , CeRegions .ArkhamCity , "sprites/icon.png" ),
8+ StinkenderFeuerFurz (CeBeastTypes .Fire , 100 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , 25 , Integer .MAX_VALUE , "" , CeRegions .ArkhamCity , "sprites/icon.png" );
99
1010
1111 private final CeBeastTypes type ;
@@ -22,8 +22,9 @@ public enum CeBeasts {
2222 private final int evolutionlvl ; // Level at which development will take place
2323 private final String evolutionId ; // ID of development of beast
2424 private final CeRegions region ;
25+ private final String portrait ;
2526
26- CeBeasts (CeBeastTypes type , int baseHp , int baseAttack , int baseDefense , int baseSpeed , int baseStamina , int hpLvlScaling , int attackLvlScaling , int defenseLvlScaling , int speedLvlScaling , int staminaLvlScaling , int developmentlvl , String developmentId , CeRegions region ) {
27+ CeBeasts (CeBeastTypes type , int baseHp , int baseAttack , int baseDefense , int baseSpeed , int baseStamina , int hpLvlScaling , int attackLvlScaling , int defenseLvlScaling , int speedLvlScaling , int staminaLvlScaling , int developmentlvl , String developmentId , CeRegions region , String portrait ) {
2728 this .type = type ;
2829 this .baseHp = baseHp ;
2930 this .baseAttack = baseAttack ;
@@ -38,6 +39,7 @@ public enum CeBeasts {
3839 this .evolutionId = developmentId ;
3940 this .evolutionlvl = developmentlvl ;
4041 this .region = region ;
42+ this .portrait = portrait ;
4143 }
4244
4345 public static CeBeasts getBeast (String name ) {
@@ -99,4 +101,8 @@ public int getEvolutionlvl() {
99101 public String getEvolutionId () {
100102 return evolutionId ;
101103 }
104+
105+ public String getPortrait () {
106+ return portrait ;
107+ }
102108}
0 commit comments