forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.0 KiB
124 lines
3.0 KiB
package engine.wpakpowers; |
|
|
|
public class Actions { |
|
|
|
public static void ApplyEffect() { |
|
|
|
} |
|
|
|
public static void ApplyEffects() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Block() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Charm() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void ClaimMine() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void ClearAggro() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void ClearNearbyAggro() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Confusion() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void CreateMob() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void DamageOverTime() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void DeferredPower() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void DirectDamage() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Invis() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void MobRecall() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Peek() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Recall() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void RemoveEffect() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Resurrect() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void RunegateTeleport() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void SetItemFlag() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void SimpleDamage() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void SpireDisable() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Steal() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Summon() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Teleport() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Track() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void TransferStat() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void TransferStatOT() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void Transform() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
|
|
public static void TreeChoke() { |
|
System.out.println("PowerAction method called"); |
|
} |
|
}
|
|
|