Fixed Cruma SummonPC effect.

Contributed by Iris.
This commit is contained in:
MobiusDevelopment
2020-08-19 07:44:18 +00:00
parent 22df83fdea
commit 2b3b01d236
22 changed files with 104 additions and 21 deletions

View File

@@ -32,15 +32,14 @@ import ai.AbstractNpcAI;
public class SummonPc extends AbstractNpcAI
{
// NPCs
private static final int PORTA = 20213;
private static final int PERUM = 20221;
// Skill
private static final SkillHolder SUMMON_PC = new SkillHolder(4161, 1);
private SummonPc()
{
addAttackId(PORTA, PERUM);
addSpellFinishedId(PORTA, PERUM);
addAttackId(PERUM);
addSpellFinishedId(PERUM);
}
@Override