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