RuneHive-Game
Loading...
Searching...
No Matches
PureNHPreload.java
Go to the documentation of this file.
1
package
com.runehive.content.preloads.impl;
2
3
import
com.runehive.content.preloads.Preload;
4
import
com.runehive.content.preloads.PreloadRepository;
5
import
com.runehive.content.skill.impl.magic.Spellbook;
6
import
com.runehive.game.world.items.Item;
7
8
/**
9
* Handles a pure nh equipment preload.
10
*
11
* @author Daniel
12
*/
13
public
class
PureNHPreload
implements
Preload
{
14
15
@Override
16
public
String
title
() {
17
return
"<icon=22> Pure NH"
;
18
}
19
20
@Override
21
public
Spellbook
spellbook
() {
22
return
Spellbook
.
ANCIENT
;
23
}
24
25
@Override
26
public
Item
[]
equipment
() {
27
return
new
Item
[]{
28
/* HELM_SLOT */
new
Item
(
PreloadRepository
.
HAT
),
// HAT
29
/* CAPE_SLOT */
new
Item
(
PreloadRepository
.
GOD_CAPE
),
// CAPE
30
/* AMULET_SLOT */
new
Item
(1704),
// AMULET OF GLORY
31
/* WEAPON_SLOT */
new
Item
(4675),
// ANCIENT STAFF
32
/* CHEST_SLOT */
new
Item
(6107),
// GHOSTLY ROBE TOP
33
/* SHIELD_SLOT */
new
Item
(
PreloadRepository
.
GOD_BOOK
),
// DAMAGED BOOK
34
/* LEGS_SLOT */
new
Item
(6108),
// GHOSTLY ROBE BOTTOM
35
/* HANDS_SLOT */
new
Item
(7458),
// MITHRIL GLOVES
36
/* FEET_SLOT */
new
Item
(3105),
// CLIMBING BOOTS
37
/* RING_SLOT */
new
Item
(2550),
// RING OF RECOIL
38
/* ARROWS_SLOT */
new
Item
(9244, 75),
// DRAGONSTONE BOLTS (E)
39
};
40
}
41
42
@Override
43
public
Item
[]
inventory
() {
44
return
new
Item
[]{
45
new
Item
(9185),
// RUNE CROSSBOW
46
new
Item
(10499),
// AVA'S ACCUMULATOR
47
new
Item
(2444),
// RANGING POTION
48
new
Item
(6685),
// SARADOMIN BREW(4)
49
new
Item
(2497),
// BLACK D'HIDE CHAPS
50
new
Item
(5698),
// DRAGON DAGGER(P++)
51
new
Item
(2436),
// SUPER ATTACK(4)
52
new
Item
(6685),
// SARADOMIN BREW(4)
53
new
Item
(4587),
// DRAGON SCIMITAR
54
new
Item
(2440),
// SUPER STRENGTH(4)
55
new
Item
(3024),
// SUPER RESTORE(4)
56
new
Item
(3024),
// SUPER RESTORE(4)
57
new
Item
(3144),
// COOKED KARAMBWAN
58
new
Item
(3144),
// COOKED KARAMBWAN
59
new
Item
(3144),
// COOKED KARAMBWAN
60
new
Item
(3144),
// COOKED KARAMBWAN
61
new
Item
(391),
// MANTA
62
new
Item
(391),
// MANTA
63
new
Item
(391),
// MANTA
64
new
Item
(391),
// MANTA
65
new
Item
(391),
// MANTA
66
new
Item
(391),
// MANTA
67
new
Item
(391),
// MANTA
68
new
Item
(391),
// MANTA
69
new
Item
(391),
// MANTA
70
new
Item
(555, 500),
// WATER RUNE
71
new
Item
(560, 500),
// DEATH RUNE
72
new
Item
(565, 500),
// BLOOD RUNE
73
};
74
}
75
76
@Override
77
public
int
[]
skills
() {
78
return
new
int
[]{
79
60,
// ATTACK
80
1,
// DEFENCE
81
99,
// STRENGTH
82
99,
// HITPOINTS
83
99,
// RANGED
84
55,
// PRAYER
85
99,
// MAGIC
86
};
87
}
88
}
com.runehive.content.preloads.PreloadRepository
The preload repository.
Definition
PreloadRepository.java:13
com.runehive.content.preloads.PreloadRepository.HAT
static final int HAT
Definition
PreloadRepository.java:21
com.runehive.content.preloads.PreloadRepository.GOD_BOOK
static final int GOD_BOOK
Definition
PreloadRepository.java:25
com.runehive.content.preloads.PreloadRepository.GOD_CAPE
static final int GOD_CAPE
Definition
PreloadRepository.java:24
com.runehive.content.preloads.impl.PureNHPreload
Handles a pure nh equipment preload.
Definition
PureNHPreload.java:13
com.runehive.content.preloads.impl.PureNHPreload.inventory
Item[] inventory()
Definition
PureNHPreload.java:43
com.runehive.content.preloads.impl.PureNHPreload.skills
int[] skills()
Definition
PureNHPreload.java:77
com.runehive.content.preloads.impl.PureNHPreload.spellbook
Spellbook spellbook()
Definition
PureNHPreload.java:21
com.runehive.content.preloads.impl.PureNHPreload.title
String title()
Definition
PureNHPreload.java:16
com.runehive.content.preloads.impl.PureNHPreload.equipment
Item[] equipment()
Definition
PureNHPreload.java:26
com.runehive.game.world.items.Item
The container class that represents an item that can be interacted with.
Definition
Item.java:21
com.runehive.content.skill.impl.magic.Spellbook
The in-game spellbooks for players.
Definition
Spellbook.java:8
com.runehive.content.skill.impl.magic.Spellbook.ANCIENT
ANCIENT
Definition
Spellbook.java:10
com.runehive.content.preloads.Preload
Definition
Preload.java:7