2024-08-13 12:05:09 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
2024-08-17 16:33:20 -04:00
|
|
|
package engine.wpak.data;
|
2024-08-06 16:56:41 -04:00
|
|
|
|
2024-08-10 16:29:55 -04:00
|
|
|
import java.util.ArrayList;
|
2024-08-06 16:56:41 -04:00
|
|
|
import java.util.HashSet;
|
|
|
|
|
|
|
|
|
|
public class EffectEntry {
|
2024-08-14 16:57:34 -04:00
|
|
|
public String effect_id;
|
|
|
|
|
public String effect_name;
|
2024-08-06 16:56:41 -04:00
|
|
|
public int icon;
|
2024-08-08 11:59:10 -04:00
|
|
|
public HashSet<String> sources = new HashSet<>();
|
2024-08-10 18:55:26 -04:00
|
|
|
public ArrayList<EffectModifier> mods = new ArrayList<>();
|
2024-08-21 12:35:01 -04:00
|
|
|
public ArrayList<ConditionEntry> conditions = new ArrayList<>();
|
2024-08-20 19:14:50 -05:00
|
|
|
|
|
|
|
|
public boolean isItemEffect;
|
|
|
|
|
public boolean isSpireEffect;
|
|
|
|
|
public boolean ignoreNoMod;
|
|
|
|
|
public boolean dontSave;
|
2024-08-06 16:56:41 -04:00
|
|
|
}
|