|
|
|
@ -2,160 +2,158 @@ package engine.wpakpowers;
@@ -2,160 +2,158 @@ package engine.wpakpowers;
|
|
|
|
|
|
|
|
|
|
import engine.objects.AbstractCharacter; |
|
|
|
|
import engine.objects.AbstractWorldObject; |
|
|
|
|
import engine.wpak.data.Effect; |
|
|
|
|
import engine.wpak.data.ModifierEntry; |
|
|
|
|
import engine.wpak.data.Power; |
|
|
|
|
import engine.wpak.data.PowerAction; |
|
|
|
|
|
|
|
|
|
public class Actions { |
|
|
|
|
|
|
|
|
|
public static void ApplyEffect(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void ApplyEffects(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Block(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Charm(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void ClaimMine(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void ClearAggro(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void ClearNearbyAggro(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Confusion(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void CreateMob(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void DamageOverTime(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void DeferredPower(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void DirectDamage(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Invis(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void MobRecall(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Peek(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Recall(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void RemoveEffect(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Resurrect(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void RunegateTeleport(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void SetItemFlag(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void SimpleDamage(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void SpireDisable(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Steal(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Summon(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Teleport(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Track(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void TransferStat(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void TransferStatOT(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void Transform(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void TreeChoke(AbstractCharacter caster, AbstractWorldObject target, Power power, |
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) { |
|
|
|
|
Integer rank, PowerAction powerAction) { |
|
|
|
|
System.out.println("PowerAction method called"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|