|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
package engine.wpakpowers;
|
|
|
|
|
|
|
|
import engine.objects.AbstractCharacter;
|
|
|
|
import engine.objects.AbstractWorldObject;
|
|
|
|
import engine.util.Pair;
|
|
|
|
import engine.wpak.data.Effect;
|
|
|
|
import engine.wpak.data.ModifierEntry;
|
|
|
|
import engine.wpak.data.Power;
|
|
|
|
import engine.wpak.data.PowerAction;
|
|
|
|
|
|
|
|
public class Behaviours {
|
|
|
|
|
|
|
|
public static Object Flag(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object MapIntToInts(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
return powerAction.attackAnimations.clone();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object Standard(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
|
|
|
|
return WpakPowerManager.applyCurveToValue(powerAction.compoundCurveType, modifierEntry.compoundCurveType.getValue(), rank);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeAttr(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
return WpakPowerManager.applyCurveToValue(powerAction.compoundCurveType, modifierEntry.compoundCurveType.getValue(), rank);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeSourceType(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
|
|
|
|
return modifierEntry.arg1; // Should we return the enum here?
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypePowerType(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
return modifierEntry.arg1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeSkill(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
return modifierEntry.arg1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeDmg(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
String key = modifierEntry.arg1;
|
|
|
|
float value = WpakPowerManager.applyCurveToValue(powerAction.compoundCurveType, modifierEntry.compoundCurveType.getValue(), rank);
|
|
|
|
return new Pair<>(key,value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object DD(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object StringBehaviour(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeMod(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypePower(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeDmg(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeSkill(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeMonster(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object ProcInfo(AbstractCharacter caster, Power power, Integer rank, AbstractWorldObject target,
|
|
|
|
PowerAction powerAction, Effect effect, ModifierEntry modifierEntry) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|