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.
23 lines
1.1 KiB
23 lines
1.1 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.HashMap;
|
||
8 months ago
|
import java.util.HashSet;
|
||
|
|
||
|
public class EffectEntry {
|
||
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 HashMap<String, Float> conditions = new HashMap<>();
|
||
8 months ago
|
}
|