RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Spellbook.java
1
package
com.osroyale.content.skill.impl.magic;
2
33
34
public
enum
Spellbook
{
35
MODERN(
"Modern"
, 0, 40000),
36
ANCIENT(
"Ancient"
, 1, 12855),
37
LUNAR(
"Lunar"
, 2, 29999);
38
40
private
final
String name;
41
43
private
final
int
id;
45
private
final
int
sidebar;
46
48
Spellbook
(String name,
int
id
,
int
sidebar) {
49
this.name = name;
50
this.id = id;
51
this.sidebar = sidebar;
52
}
53
55
public
String
getName
() {
56
return
name;
57
}
58
60
public
int
getId
() {
61
return
id;
62
}
63
65
public
int
getInterfaceId
() {
66
return
sidebar;
67
}
68
}
com.osroyale.content.skill.impl.magic.Spellbook.getId
int getId()
Definition
Spellbook.java:60
com.osroyale.content.skill.impl.magic.Spellbook.getName
String getName()
Definition
Spellbook.java:55
com.osroyale.content.skill.impl.magic.Spellbook.Spellbook
Spellbook(String name, int id, int sidebar)
Definition
Spellbook.java:48
com.osroyale.content.skill.impl.magic.Spellbook.getInterfaceId
int getInterfaceId()
Definition
Spellbook.java:65