RuneHive-Game
Loading...
Searching...
No Matches
ItemEquipDefRequirement.kt
Go to the documentation of this file.
1package org.jire.runehiveps.defs
2
3/**
4 * @author Jire
5 */
6data class ItemEquipDefRequirement(
7 val attack: Int,
8 val defence: Int,
9 val strength: Int,
10 val hitpoints: Int,
11 val ranged: Int,
12 val prayer: Int,
13 val magic: Int,
14 val cooking: Int,
15 val woodcutting: Int,
16 val fletching: Int,
17 val fishing: Int,
18 val firemaking: Int,
19 val crafting: Int,
20 val smithing: Int,
21 val mining: Int,
22 val herblore: Int,
23 val agility: Int,
24 val thieving: Int,
25 val slayer: Int,
26 val farming: Int,
27 val runecrafting: Int,
28 val hunter: Int,
29) {
30
31 fun toArray() = intArrayOf(
32 attack,
33 defence,
34 strength,
35 hitpoints,
36 ranged,
37 prayer,
38 magic,
39 cooking,
40 woodcutting,
41 fletching,
42 fishing,
43 firemaking,
44 crafting,
45 smithing,
46 mining,
47 herblore,
48 agility,
49 thieving,
50 slayer,
51 farming,
52 runecrafting,
53 hunter,
54 )
55
56}