Browse Source

updated stronghold mobs

lakebane-strongholds
FatBoy-DOTC 4 months ago
parent
commit
9c002c7bff
  1. 115
      src/engine/gameManager/StrongholdManager.java

115
src/engine/gameManager/StrongholdManager.java

@ -216,19 +216,39 @@ public class StrongholdManager {
public static int getStrongholdGuardianID(int ID){ public static int getStrongholdGuardianID(int ID){
switch(ID){ switch(ID){
case 814000: case 814000:
return 13528; // Mountain Giant Raider Axe return 253004; // Mountain Giant Raider Axe
case 5001500: case 5001500:
return 13643; // Vampire Spear Warrior return 253008; // Vampire Spear Warrior
case 1306600: case 1306600:
return 13802; // Desert Orc Warrior return 253007; // Desert Orc Warrior
case 564600: case 564600:
return 12728; // Kolthoss Warrior return 253010; // Kolthoss Warrior
case 1326600: case 1326600:
return 14153; //elven warrior return 253005; //elven warrior
case 602400: case 602400:
return 13326; // templar missionary return 253009; // templar missionary
case 1600000: case 1600000:
return 14041; // scourger return 253006; // scourger
}
return 13434; // human sword and board warrior
}
public static int getStrongholdEpicID(int ID){
switch(ID){
case 814000:
return 253023; // Mountain Giant Raider Axe
case 5001500:
return 253022; // Vampire Spear Warrior
case 1306600:
return 253021; // Desert Orc Warrior
case 564600:
return 253018; // Kolthoss Warrior
case 1326600:
return 253019; //elven warrior
case 602400:
return 253024; // templar missionary
case 1600000:
return 253020; // scourger
} }
return 13434; // human sword and board warrior return 13434; // human sword and board warrior
} }
@ -236,55 +256,56 @@ public class StrongholdManager {
public static int getStrongholdCommanderID(int ID){ public static int getStrongholdCommanderID(int ID){
switch(ID){ switch(ID){
case 814000: case 814000:
return 13515; return 253017;
case 5001500: case 5001500:
return 14280; return 253012;
case 1306600: case 1306600:
return 13789; // Desert Orc Xbow return 253016; // Desert Orc Xbow
case 564600: case 564600:
return 12724; // xbow kolthoss return 253011; // xbow kolthoss
case 1326600: case 1326600:
return 14158; //elven bow warrior return 253013; //elven bow warrior
case 602400: case 602400:
return 13917; // dune giant with xbow return 253015; // dune giant with xbow
case 1600000: case 1600000:
return 14034; // barbator return 253014; // barbator
} }
return 13433; return 13433;
} }
public static int getStrongholdMobEquipSetID(int mobbaseUUID){ public static int getStrongholdMobEquipSetID(int mobbaseUUID) {
switch(mobbaseUUID){ switch (mobbaseUUID) {
case 14280: case 253005:
return 10790; case 253019:
case 13643: return 5874; // elven HA set
return 6317; case 253009:
case 13515: case 253024:
return 7820; return 8933; // templar HA set
case 13528: case 253006:
return 5966; case 253020:
case 13802: case 253008:
return 9043; case 253022:
case 13789: return 6329; // dark knight set
return 9035; case 253010:
case 12728: case 253018:
return 6826; return 6691; //lizardman set sword
case 12724: case 253007:
case 13917: case 253021:
case 14034: return 9047; // orc warrior
return 9471; case 253004:
case 13434: case 253023:
return 6327; return 5945; // mountain giant raider
case 13433:
return 6900; //ranged
case 14158: case 253013:
return 7523; return 7899; //elven bow warrior
case 14153: case 253017:
return 7513; case 253012:
case 13326: case 253016:
return 8957; case 253011:
case 14041: case 253015:
return 9615; case 253014:
return 9035; // Regular Xbox
} }
return 0; return 0;
} }
@ -306,7 +327,7 @@ public class StrongholdManager {
Zone mineZone = ZoneManager.findSmallestZone(tower.loc); Zone mineZone = ZoneManager.findSmallestZone(tower.loc);
Vector3fImmutable loc = tower.loc; Vector3fImmutable loc = tower.loc;
MobBase commanderBase = MobBase.getMobBase(getStrongholdGuardianID(tower.meshUUID)); MobBase commanderBase = MobBase.getMobBase(getStrongholdEpicID(tower.meshUUID));
Mob commander = Mob.createMob(commanderBase.getLoadID(), loc, Guild.getErrantGuild(), true, mineZone, null, 0, commanderBase.getFirstName(), 75); Mob commander = Mob.createMob(commanderBase.getLoadID(), loc, Guild.getErrantGuild(), true, mineZone, null, 0, commanderBase.getFirstName(), 75);
if (commander != null) { if (commander != null) {
commander.parentZone = mine.getParentZone(); commander.parentZone = mine.getParentZone();

Loading…
Cancel
Save