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.
15 lines
380 B
15 lines
380 B
8 months ago
|
package engine.wpak;
|
||
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 {
|
||
|
public String id;
|
||
|
public String name;
|
||
|
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
|
}
|