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.
37 lines
1.5 KiB
37 lines
1.5 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2024 |
|
// www.magicbane.com |
|
|
|
package engine.wpak.data; |
|
|
|
import engine.powers.effectmodifiers.AbstractEffectModifier; |
|
|
|
import java.util.ArrayList; |
|
import java.util.HashSet; |
|
|
|
public class Effect { |
|
public String effect_id; |
|
public String effect_name; |
|
public int icon; |
|
public HashSet<String> sources = new HashSet<>(); |
|
public ArrayList<ModifierEntry> mods = new ArrayList<>(); |
|
public ArrayList<ConditionEntry> conditions = new ArrayList<>(); |
|
|
|
// Additional variables outside of tags or parsed |
|
// elsewhere from Effects.cfg |
|
|
|
public boolean isItemEffect; |
|
public boolean isSpireEffect; |
|
public boolean ignoreNoMod; |
|
public boolean dontSave; |
|
|
|
public String type; |
|
public int level; |
|
public String message; |
|
public int cycleDuration; |
|
public int cycleDelay; |
|
}
|
|
|