Browse Source

saetor skills

lakebane-master
FatBoy-DOTC 8 months ago
parent
commit
38c9612eb6
  1. 16
      src/engine/objects/CharacterSkill.java
  2. 6
      src/engine/objects/Race.java

16
src/engine/objects/CharacterSkill.java

@ -560,14 +560,14 @@ public class CharacterSkill extends AbstractGameObject { @@ -560,14 +560,14 @@ public class CharacterSkill extends AbstractGameObject {
if (skills == null)
return;
if (pc.getRace().getName().equals("Saetor")) {
SkillReq parry = new SkillReq(95961104, (short) 1);
SkillReq staff = new SkillReq(71438003, (short) 15);
SkillReq staffMastery = new SkillReq(-61022283, (short) 1);
skillsGranted.add(parry);
skillsGranted.add(staff);
skillsGranted.add(staffMastery);
}
//if (pc.getRace().getName().equals("Saetor")) {
// SkillReq parry = new SkillReq(95961104, (short) 1);
// SkillReq staff = new SkillReq(71438003, (short) 15);
// SkillReq staffMastery = new SkillReq(-61022283, (short) 1);
// skillsGranted.add(parry);
// skillsGranted.add(staff);
// skillsGranted.add(staffMastery);
//}
for (SkillReq skillreq : skillsGranted) {
SkillsBase skillsBase = skillreq.getSkillsBase();

6
src/engine/objects/Race.java

@ -158,9 +158,9 @@ public class Race { @@ -158,9 +158,9 @@ public class Race {
baseClassesSaetor.add(BaseClass.getBaseClass(2502));
baseClassesSaetor.add(BaseClass.getBaseClass(2503));
ArrayList<SkillReq> skillsGrantedSaetor = new ArrayList<>();
//skillsGrantedSaetor.add(new SkillReq(71438003, (short) 15)); // staff
//skillsGrantedSaetor.add(new SkillReq(-61022283, (short) 10)); // staff mastery
//skillsGrantedSaetor.add(new SkillReq(95961104, (short) 10)); // parry
skillsGrantedSaetor.add(new SkillReq(37, (short) 10)); // staff
skillsGrantedSaetor.add(new SkillReq(36, (short) 1)); // staff mastery
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);

Loading…
Cancel
Save