Skip to content

Commit 19e6d0a

Browse files
committed
Increase extra spawns chance
1 parent ccd023f commit 19e6d0a

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

src/main/java/de/ellpeck/nyx/config/NyxConfig.java

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -205,18 +205,18 @@ public static class BloodMoon {
205205

206206
@Config.Name("Extra Spawns")
207207
@Config.Comment({"The registry names of entities that should spawn additionally alongside other entities during the event", "Syntax: originalEntity;extraEntity"})
208-
public String[] spawnsExtra = new String[]{};
208+
public String[] spawnsExtra = new String[]{
209+
"minecraft:zombie;nyx:eyezor"
210+
};
209211

210212
@Config.Name("Extra Spawns Chance")
211213
@Config.Comment({"The chance for an additional mob to be spawned when a mob spawns during the event", "The higher the number, the less likely", "Set to 0 to disable"})
212214
@Config.RangeInt(min = 0, max = 1000)
213-
public int spawnsExtraChance = 5;
215+
public int spawnsExtraChance = 10;
214216

215217
@Config.Name("Replacement Spawns")
216218
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
217-
public String[] spawnsReplacement = new String[]{
218-
"minecraft:zombie;nyx:eyezor"
219-
};
219+
public String[] spawnsReplacement = new String[]{};
220220
}
221221

222222
public static class BlueMoon {
@@ -279,7 +279,7 @@ public static class BlueMoon {
279279
@Config.Name("Extra Spawns Chance")
280280
@Config.Comment({"The chance for an additional mob to be spawned when a mob spawns during the event", "The higher the number, the less likely", "Set to 0 to disable"})
281281
@Config.RangeInt(min = 0, max = 1000)
282-
public int spawnsExtraChance = 5;
282+
public int spawnsExtraChance = 10;
283283

284284
@Config.Name("Replacement Spawns")
285285
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
@@ -311,7 +311,7 @@ public static class FullMoon {
311311
@Config.Name("Extra Spawns Chance")
312312
@Config.Comment({"The chance for an additional mob to be spawned when a mob spawns during the event", "The higher the number, the less likely", "Set to 0 to disable"})
313313
@Config.RangeInt(min = 0, max = 1000)
314-
public int spawnsExtraChance = 5;
314+
public int spawnsExtraChance = 10;
315315

316316
@Config.Name("Replacement Spawns")
317317
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
@@ -361,18 +361,18 @@ public static class StarShower {
361361

362362
@Config.Name("Extra Spawns")
363363
@Config.Comment({"The registry names of entities that should spawn additionally alongside other entities during the event", "Syntax: originalEntity;extraEntity"})
364-
public String[] spawnsExtra = new String[]{};
364+
public String[] spawnsExtra = new String[]{
365+
"minecraft:zombie;nyx:eyezor"
366+
};
365367

366368
@Config.Name("Extra Spawns Chance")
367369
@Config.Comment({"The chance for an additional mob to be spawned when a mob spawns during the event", "The higher the number, the less likely", "Set to 0 to disable"})
368370
@Config.RangeInt(min = 0, max = 1000)
369-
public int spawnsExtraChance = 5;
371+
public int spawnsExtraChance = 10;
370372

371373
@Config.Name("Replacement Spawns")
372374
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
373-
public String[] spawnsReplacement = new String[]{
374-
"minecraft:zombie;nyx:eyezor"
375-
};
375+
public String[] spawnsReplacement = new String[]{};
376376
}
377377
}
378378

@@ -416,12 +416,14 @@ public static class GrimEclipse {
416416

417417
@Config.Name("Extra Spawns")
418418
@Config.Comment({"The registry names of entities that should spawn additionally alongside other entities during the event", "Syntax: originalEntity;extraEntity"})
419-
public String[] spawnsExtra = new String[]{};
419+
public String[] spawnsExtra = new String[]{
420+
"minecraft:zombie;nyx:eyezor"
421+
};
420422

421423
@Config.Name("Extra Spawns Chance")
422424
@Config.Comment({"The chance for an additional mob to be spawned when a mob spawns during the event", "The higher the number, the less likely", "Set to 0 to disable"})
423425
@Config.RangeInt(min = 0, max = 1000)
424-
public int spawnsExtraChance = 5;
426+
public int spawnsExtraChance = 10;
425427

426428
@Config.Name("Cloud Color")
427429
@Config.Comment("The hex code of the Grim Eclipse's cloud color")
@@ -437,9 +439,7 @@ public static class GrimEclipse {
437439

438440
@Config.Name("Replacement Spawns")
439441
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
440-
public String[] spawnsReplacement = new String[]{
441-
"minecraft:zombie;nyx:eyezor"
442-
};
442+
public String[] spawnsReplacement = new String[]{};
443443
}
444444

445445
public static class RedGiant {
@@ -469,12 +469,14 @@ public static class RedGiant {
469469

470470
@Config.Name("Extra Spawns")
471471
@Config.Comment({"The registry names of entities that should spawn additionally alongside other entities during the event", "Syntax: originalEntity;extraEntity"})
472-
public String[] spawnsExtra = new String[]{};
472+
public String[] spawnsExtra = new String[]{
473+
"minecraft:zombie;nyx:eyezor"
474+
};
473475

474476
@Config.Name("Extra Spawns Chance")
475477
@Config.Comment({"The chance for an additional mob to be spawned when a mob spawns during the event", "The higher the number, the less likely", "Set to 0 to disable"})
476478
@Config.RangeInt(min = 0, max = 1000)
477-
public int spawnsExtraChance = 5;
479+
public int spawnsExtraChance = 10;
478480

479481
@Config.Name("Cloud Color")
480482
@Config.Comment("The hex code of the Red Giant's cloud color")

0 commit comments

Comments
 (0)