Lizardman Race Added

This commit is contained in:
2024-03-11 20:26:26 -05:00
parent 8bfba1b3a5
commit 132addc0a9
3 changed files with 15 additions and 1 deletions
+12
View File
@@ -163,6 +163,18 @@ public class Race {
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)10,19991999,(short)0,(short)0,5.0f,(short)0,baseClassesSaetor,skillsGrantedSaetor,powersGrantedSaetor,effectsListSaetor);
Race._raceByID.put(1999,saetor);
//create Lizardman race
ArrayList<BaseClass> baseClassesLizardman = new ArrayList<>();
baseClassesLizardman.add(BaseClass.getBaseClass(2500));
baseClassesLizardman.add(BaseClass.getBaseClass(2501));
baseClassesLizardman.add(BaseClass.getBaseClass(2502));
baseClassesLizardman.add(BaseClass.getBaseClass(2503));
ArrayList<SkillReq> skillsGrantedLizardman = new ArrayList<>();
ArrayList<PowerReq> powersGrantedLizardman = new ArrayList<>();
ArrayList<MobBaseEffects> effectsListLizardman = new ArrayList<>();
Race lizardman = new Race(1998,"Lizardman","Rulers of the swamps, Lizardmen treat all intruders with great hostility.",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)10,19981998,(short)0,(short)0,5.0f,(short)0,baseClassesLizardman,skillsGrantedLizardman,powersGrantedLizardman,effectsListLizardman);
Race._raceByID.put(1998,lizardman);
}
public static Race getRace(int id) {