RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SilverMysteryBox.java
1
package
com.osroyale.content.mysterybox.impl;
2
3
import
com.osroyale.content.mysterybox.MysteryBox;
4
import
com.osroyale.content.mysterybox.MysteryItem;
5
import
com.osroyale.game.world.items.Item;
6
import
com.osroyale.util.Items;
7
8
import
static
com.osroyale.content.mysterybox.MysteryRarity.*;
9
39
40
public
class
SilverMysteryBox
extends
MysteryBox
{
41
@Override
42
protected
String
name
() {
43
return
"Silver mystery box"
;
44
}
45
46
@Override
47
protected
int
item
() {
48
return
12955;
49
}
50
51
@Override
52
protected
MysteryItem
[]
rewards
() {
53
return
new
MysteryItem
[]{
54
new
MysteryItem
(
Items
.COINS, 500_000, COMMON),
55
new
MysteryItem
(
Items
.SHARK, 100, COMMON),
56
new
MysteryItem
(
Items
.GUTHANS_ARMOUR_SET, 1, COMMON),
57
new
MysteryItem
(
Items
.VERACS_ARMOUR_SET, 1, COMMON),
58
new
MysteryItem
(
Items
.KARILS_ARMOUR_SET, 1, COMMON),
59
new
MysteryItem
(
Items
.DHAROKS_ARMOUR_SET, 1, COMMON),
60
new
MysteryItem
(
Items
.AHRIMS_ARMOUR_SET, 1, COMMON),
61
new
MysteryItem
(
Items
.ABYSSAL_WHIP, 1, COMMON),
62
new
MysteryItem
(
Items
.DRAGON_FULL_HELM, 1, COMMON),
63
new
MysteryItem
(
Items
.RANGERS_TUNIC, 1, COMMON),
64
new
MysteryItem
(
Items
.SARADOMIN_GODSWORD, 1, UNCOMMON),
65
new
MysteryItem
(
Items
.BANDOS_GODSWORD, 1, UNCOMMON),
66
new
MysteryItem
(
Items
.ARMADYL_GODSWORD, 1, UNCOMMON),
67
new
MysteryItem
(
Items
.ZAMORAK_GODSWORD, 1, UNCOMMON),
68
new
MysteryItem
(
Items
.BANDOS_CHESTPLATE, 1, UNCOMMON),
69
new
MysteryItem
(
Items
.BANDOS_TASSETS, 1, UNCOMMON),
70
new
MysteryItem
(
Items
.BANDOS_BOOTS, 1, UNCOMMON),
71
new
MysteryItem
(
Items
.FIGHTER_TORSO, 1, UNCOMMON),
72
new
MysteryItem
(
Items
.FIGHTER_HAT, 1, UNCOMMON),
73
new
MysteryItem
(
Items
.OLD_DEMON_MASK, 1, RARE),
74
new
MysteryItem
(
Items
.JUNGLE_DEMON_MASK, 1, RARE),
75
new
MysteryItem
(
Items
.GREATER_DEMON_MASK, 1, RARE),
76
new
MysteryItem
(
Items
.LESSER_DEMON_MASK, 1, RARE),
77
new
MysteryItem
(
Items
.TOXIC_BLOWPIPE, 1, EXOTIC),
78
new
MysteryItem
(
Items
.ARMADYL_CHAINSKIRT, 1, EXOTIC),
79
new
MysteryItem
(
Items
.ARMADYL_CHESTPLATE, 1, EXOTIC),
80
new
MysteryItem
(
Items
.ARMADYL_HELMET, 1, EXOTIC),
81
new
MysteryItem
(
Items
.TRIDENT_OF_THE_SEAS, 1, EXOTIC),
82
new
MysteryItem
(
Items
.ABYSSAL_BLUDGEON, 1, EXOTIC),
83
new
MysteryItem
(
Items
.DRAGON_HARPOON, 1, EXOTIC)
84
};
85
}
86
}
com.osroyale.content.mysterybox.MysteryBox
Definition
MysteryBox.java:50
com.osroyale.content.mysterybox.MysteryItem
Definition
MysteryItem.java:26
com.osroyale.content.mysterybox.impl.SilverMysteryBox
Definition
SilverMysteryBox.java:40
com.osroyale.content.mysterybox.impl.SilverMysteryBox.name
String name()
Definition
SilverMysteryBox.java:42
com.osroyale.content.mysterybox.impl.SilverMysteryBox.item
int item()
Definition
SilverMysteryBox.java:47
com.osroyale.content.mysterybox.impl.SilverMysteryBox.rewards
MysteryItem[] rewards()
Definition
SilverMysteryBox.java:52
com.osroyale.util.Items
Definition
Items.java:27