pojo created for ConditionEntry

This commit is contained in:
2024-08-21 12:35:01 -04:00
parent a61b8d193b
commit f0c6584818
3 changed files with 39 additions and 7 deletions
+1 -2
View File
@@ -9,7 +9,6 @@
package engine.wpak.data;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
public class EffectEntry {
@@ -18,7 +17,7 @@ public class EffectEntry {
public int icon;
public HashSet<String> sources = new HashSet<>();
public ArrayList<EffectModifier> mods = new ArrayList<>();
public HashMap<String, Float> conditions = new HashMap<>();
public ArrayList<ConditionEntry> conditions = new ArrayList<>();
public boolean isItemEffect;
public boolean isSpireEffect;