Fixed transformations for Blade, Punishment, Wailing of Splendor.

Contributed by andrei.
This commit is contained in:
MobiusDevelopment
2020-01-06 14:24:28 +00:00
parent a91782e8cb
commit 1f56fdc091
32 changed files with 138 additions and 140 deletions

View File

@@ -39,7 +39,6 @@ import ai.AbstractNpcAI;
public class PolymorphingOnAttack extends AbstractNpcAI
{
private static final Map<Integer, List<Integer>> MOBSPAWNS = new HashMap<>();
static
{
MOBSPAWNS.put(21258, Arrays.asList(21259, 100, 100, -1)); // Fallen Orc Shaman -> Sharp Talon Tiger (always polymorphs)
@@ -51,6 +50,13 @@ public class PolymorphingOnAttack extends AbstractNpcAI
MOBSPAWNS.put(21267, Arrays.asList(21270, 100, 100, -1)); // Cave Ant Larva -> Cave Ant Soldier (always polymorphs)
MOBSPAWNS.put(21271, Arrays.asList(21272, 66, 10, 1)); // Cave Ant -> Cave Ant Soldier
MOBSPAWNS.put(21272, Arrays.asList(21273, 33, 5, 2)); // Cave Ant Soldier -> Cave Noble Ant
MOBSPAWNS.put(21521, Arrays.asList(21522, 100, 30, -1)); // Claws of Splendor
MOBSPAWNS.put(21524, Arrays.asList(21525, 100, 30, -1)); // Blade of Splendor
MOBSPAWNS.put(21527, Arrays.asList(21528, 100, 30, -1)); // Anger of Splendor
MOBSPAWNS.put(21531, Arrays.asList(21658, 100, 30, -1)); // Punishment of Splendor
MOBSPAWNS.put(21533, Arrays.asList(21534, 100, 30, -1)); // Alliance of Splendor
MOBSPAWNS.put(21537, Arrays.asList(21538, 100, 30, -1)); // Fang of Splendor
MOBSPAWNS.put(21539, Arrays.asList(21540, 100, 30, -1)); // Wailing of Splendor
}
protected static final NpcStringId[][] MOBTEXTS =