Public Repository for the Magicbane Emulator Project Called BattleBane
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
332 B

11 months ago
package engine.ConfigParsing.EffectsData;
11 months ago
import engine.mbEnums;
11 months ago
import java.util.ArrayList;
public class EffectData {
public String id;
public String name;
public int icon;
11 months ago
public ArrayList<mbEnums.EffectSourceType> sources;
public ArrayList<mbEnums.ModType> mods;
11 months ago
public ArrayList<String> conditions;
}