|
|
|
@ -130,14 +130,19 @@ public class EffectsParser {
@@ -130,14 +130,19 @@ public class EffectsParser {
|
|
|
|
|
|
|
|
|
|
public static void GenerateModValues(Mod inMod, String[] data) { |
|
|
|
|
|
|
|
|
|
int maxValue = 5; |
|
|
|
|
|
|
|
|
|
if(inMod.type.equals("Health")) |
|
|
|
|
maxValue = 7; |
|
|
|
|
|
|
|
|
|
inMod.values = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
for (int i = 1; i < data.length; i++) |
|
|
|
|
if (!data[i].isEmpty()) { |
|
|
|
|
if (i == 5) |
|
|
|
|
if (i >= maxValue) |
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
if (i == 4) |
|
|
|
|
if (i == maxValue - 1) |
|
|
|
|
try { |
|
|
|
|
String entry = ""; |
|
|
|
|
for (int j = i; j < data.length; j ++){ |
|
|
|
|