|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
package engine.wpakpowers;
|
|
|
|
|
|
|
|
import engine.objects.AbstractCharacter;
|
|
|
|
import engine.objects.AbstractWorldObject;
|
|
|
|
import engine.wpak.data.ActionEntry;
|
|
|
|
import engine.wpak.data.Effect;
|
|
|
|
import engine.wpak.data.ModifierEntry;
|
|
|
|
import engine.wpak.data.Power;
|
|
|
|
|
|
|
|
public class Behaviour {
|
|
|
|
|
|
|
|
public static Object Behaviour(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object Flag(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object MapIntToInts(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object Standard(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
boolean useAdditiveCurve = true;
|
|
|
|
float modifierCurveValue = modifierEntry.compoundCurveType.getValue();
|
|
|
|
float modValue;
|
|
|
|
|
|
|
|
if (modifierCurveValue > 0 && modifierCurveValue < .1 &&
|
|
|
|
modifierEntry.min != 0 && modifierEntry.max != 0)
|
|
|
|
useAdditiveCurve = false;
|
|
|
|
|
|
|
|
if (useAdditiveCurve)
|
|
|
|
modValue = powerAction.curve.getValue() + (modifierCurveValue * rank);
|
|
|
|
else
|
|
|
|
modValue = powerAction.curve.getValue() * (1 + (modifierCurveValue * rank));
|
|
|
|
|
|
|
|
modValue = modValue * 0.01f;
|
|
|
|
|
|
|
|
return modValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeAttr(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeSourceType(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypePowerType(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeSkill(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeDmg(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object DD(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object StringBehaviour(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeMod(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypePower(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object SubTypeDmg(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeSkill(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object FPSubTypeMonster(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Object ProcInfo(AbstractCharacter caster, AbstractWorldObject target, Power power,
|
|
|
|
ActionEntry powerAction, Effect effect, ModifierEntry modifierEntry, Integer rank) {
|
|
|
|
System.out.println("Behavior method called");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|