RuneHive-Game
Loading...
Searching...
No Matches
RecipeForDisasterData.java
Go to the documentation of this file.
1package com.runehive.content.activity.impl.recipefordisaster;
2
3/**
4 * Holds the recipe for disaster activity data.
5 *
6 * @author Daniel
7 */
9 AGRITH_NA_NA(4880, 1),
10 FLAMBEED(4881, 3),
11 KARAMEL(4882, 6),
12 DESSOURT(4883, 8),
14 CULINAROMANCER(4878, 10);
15
16 public final int npc;
17 public final int gloves;
18
20 this.npc = npc;
21 this.gloves = gloves;
22 }
23
25 int index = ordinal() + 1;
26 if (index >= values().length)
27 return null;
28 return values()[index];
29 }
30}