Browse Source

update saetor stats

lakebane-master
FatBoy-DOTC 6 months ago
parent
commit
74a22d4cf5
  1. 1
      src/engine/devcmd/cmds/PrintStatsCmd.java
  2. 2
      src/engine/objects/Race.java

1
src/engine/devcmd/cmds/PrintStatsCmd.java

@ -56,6 +56,7 @@ public class PrintStatsCmd extends AbstractDevCmd { @@ -56,6 +56,7 @@ public class PrintStatsCmd extends AbstractDevCmd {
}
public void printStatsPlayer(PlayerCharacter pc, PlayerCharacter tar) {
tar.calculateMaxHealthManaStamina();
String newline = "\r\n ";
String out = "Server stats for Player " + tar.getFirstName() + newline;
out += "Unused Stats: " + tar.getUnusedStatPoints() + newline;

2
src/engine/objects/Race.java

@ -163,7 +163,7 @@ public class Race { @@ -163,7 +163,7 @@ public class Race {
skillsGrantedSaetor.add(new SkillReq(27, (short) 1)); // parry
ArrayList<PowerReq> powersGrantedSaetor = new ArrayList<>();
ArrayList<MobBaseEffects> effectsListSaetor = new ArrayList<>();
Race saetor = new Race(1999,"Saetor","Half goat half man, the Saetor race does the bidding of the Choas Gods.",new Vector3f(35,30,85),new Vector3f(55,50,120),new Vector3f(50,45,115),new Vector3f(45,40,110),new Vector3f(35,30,85),(byte)20,19991999,(short)0,(short)0,5.0f,(short)0,baseClassesSaetor,skillsGrantedSaetor,powersGrantedSaetor,effectsListSaetor);
Race saetor = new Race(1999,"Saetor","Half goat half man, the Saetor race does the bidding of the Choas Gods.",new Vector3f(35,30,85),new Vector3f(55,50,120),new Vector3f(50,45,115),new Vector3f(45,40,110),new Vector3f(35,30,85),(byte)20,19991999,(short)20,(short)70,5.0f,(short)10,baseClassesSaetor,skillsGrantedSaetor,powersGrantedSaetor,effectsListSaetor);
Race._raceByID.put(1999,saetor);
}

Loading…
Cancel
Save