RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
RecipeForDisasterData.java
1package com.osroyale.content.activity.impl.recipefordisaster;
2
32
33public enum RecipeForDisasterData {
34 AGRITH_NA_NA(4880, 1),
35 FLAMBEED(4881, 3),
36 KARAMEL(4882, 6),
37 DESSOURT(4883, 8),
38 GELATINNOTH_MOTHER(4884, 9),
39 CULINAROMANCER(4878, 10);
40
41 public final int npc;
42 public final int gloves;
43
44 RecipeForDisasterData(int npc, int gloves) {
45 this.npc = npc;
46 this.gloves = gloves;
47 }
48
49 public RecipeForDisasterData getNext() {
50 int index = ordinal() + 1;
51 if (index >= values().length)
52 return null;
53 return values()[index];
54 }
55}