Skip to content

Commit 22bcc19

Browse files
committed
Configs
1 parent 81c9a58 commit 22bcc19

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

data/luna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
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
}

src/main/kotlin/game/game/skill/cooking/cookFood/Food.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)