File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
src/main/kotlin/game/game/skill/cooking/cookFood Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 3232 "skills" : {
3333 "woodcutting_speed" : 4 ,
3434 "use_317_tree_stumps" : false ,
35- "slayer_equipment_needed" : false ,
35+ "slayer_equipment_needed" : true ,
3636 "max_firemaking_light_ticks" : 10 ,
3737 "tele_other_throttle_seconds" : 30
3838 }
Original file line number Diff line number Diff line change @@ -176,6 +176,13 @@ enum class Food(val raw: Int,
176176 chance = 90 to 215 ,
177177 burnStopLvl = 99 ,
178178 exp = 210.0 ),
179+ MANTA_RAY (raw = 389 ,
180+ cooked = 391 ,
181+ burnt = 393 ,
182+ lvl = 91 ,
183+ chance = 85 to 195 ,
184+ burnStopLvl = 100 ,
185+ exp = 216.3 ),
179186 REDBERRY_PIE (raw = 2321 ,
180187 cooked = 2325 ,
181188 burnt = 2329 ,
@@ -225,6 +232,11 @@ enum class Food(val raw: Int,
225232 * A map of raw food identifiers to food.
226233 */
227234 val RAW_TO_FOOD = values().associateBy { it.raw }
235+
236+ /* *
237+ * A map of cooked food identifiers to food.
238+ */
239+ val COOKED_TO_FOOD = values().associateBy { it.cooked }
228240 }
229241
230242 /* *
You can’t perform that action at this time.
0 commit comments