RuneHive-Game
Loading...
Searching...
No Matches
com.runehive.content.mysterybox.impl.SilverMysteryBox Class Reference

The silver (tier 2) mystery box. More...

Inheritance diagram for com.runehive.content.mysterybox.impl.SilverMysteryBox:
Collaboration diagram for com.runehive.content.mysterybox.impl.SilverMysteryBox:

Protected Member Functions

int item ()
 The item identification of the mystery box.
String name ()
 The name of the mystery box.
MysteryItem[] rewards ()
 The rewards for the mystery box.

Additional Inherited Members

Static Public Member Functions inherited from com.runehive.content.mysterybox.MysteryBox
static void load ()
 Handles loading the mystery boxes.
Static Package Functions inherited from com.runehive.content.mysterybox.MysteryBox
static Optional< MysteryBoxgetMysteryBox (int item)
 Handles getting the mystery box.

Detailed Description

The silver (tier 2) mystery box.

Author
Daniel

Definition at line 15 of file SilverMysteryBox.java.

Member Function Documentation

◆ item()

int com.runehive.content.mysterybox.impl.SilverMysteryBox.item ( )
protected

The item identification of the mystery box.

Reimplemented from com.runehive.content.mysterybox.MysteryBox.

Definition at line 22 of file SilverMysteryBox.java.

22 {
23 return 12955;
24 }

◆ name()

String com.runehive.content.mysterybox.impl.SilverMysteryBox.name ( )
protected

The name of the mystery box.

Reimplemented from com.runehive.content.mysterybox.MysteryBox.

Definition at line 17 of file SilverMysteryBox.java.

17 {
18 return "Silver mystery box";
19 }

◆ rewards()

MysteryItem[] com.runehive.content.mysterybox.impl.SilverMysteryBox.rewards ( )
protected

The rewards for the mystery box.

Reimplemented from com.runehive.content.mysterybox.MysteryBox.

Definition at line 27 of file SilverMysteryBox.java.

27 {
28 return new MysteryItem[]{
29 new MysteryItem(Items.COINS, 500_000, COMMON),
30 new MysteryItem(Items.SHARK, 100, COMMON),
31 new MysteryItem(Items.GUTHANS_ARMOUR_SET, 1, COMMON),
32 new MysteryItem(Items.VERACS_ARMOUR_SET, 1, COMMON),
33 new MysteryItem(Items.KARILS_ARMOUR_SET, 1, COMMON),
34 new MysteryItem(Items.DHAROKS_ARMOUR_SET, 1, COMMON),
35 new MysteryItem(Items.AHRIMS_ARMOUR_SET, 1, COMMON),
36 new MysteryItem(Items.ABYSSAL_WHIP, 1, COMMON),
37 new MysteryItem(Items.DRAGON_FULL_HELM, 1, COMMON),
38 new MysteryItem(Items.RANGERS_TUNIC, 1, COMMON),
39 new MysteryItem(Items.SARADOMIN_GODSWORD, 1, UNCOMMON),
40 new MysteryItem(Items.BANDOS_GODSWORD, 1, UNCOMMON),
41 new MysteryItem(Items.ARMADYL_GODSWORD, 1, UNCOMMON),
42 new MysteryItem(Items.ZAMORAK_GODSWORD, 1, UNCOMMON),
43 new MysteryItem(Items.BANDOS_CHESTPLATE, 1, UNCOMMON),
44 new MysteryItem(Items.BANDOS_TASSETS, 1, UNCOMMON),
45 new MysteryItem(Items.BANDOS_BOOTS, 1, UNCOMMON),
46 new MysteryItem(Items.FIGHTER_TORSO, 1, UNCOMMON),
47 new MysteryItem(Items.FIGHTER_HAT, 1, UNCOMMON),
48 new MysteryItem(Items.OLD_DEMON_MASK, 1, RARE),
49 new MysteryItem(Items.JUNGLE_DEMON_MASK, 1, RARE),
50 new MysteryItem(Items.GREATER_DEMON_MASK, 1, RARE),
51 new MysteryItem(Items.LESSER_DEMON_MASK, 1, RARE),
52 new MysteryItem(Items.TOXIC_BLOWPIPE, 1, EXOTIC),
53 new MysteryItem(Items.ARMADYL_CHAINSKIRT, 1, EXOTIC),
54 new MysteryItem(Items.ARMADYL_CHESTPLATE, 1, EXOTIC),
55 new MysteryItem(Items.ARMADYL_HELMET, 1, EXOTIC),
56 new MysteryItem(Items.TRIDENT_OF_THE_SEAS, 1, EXOTIC),
57 new MysteryItem(Items.ABYSSAL_BLUDGEON, 1, EXOTIC),
58 new MysteryItem(Items.DRAGON_HARPOON, 1, EXOTIC)
59 };
60 }

References com.runehive.util.Items.ABYSSAL_BLUDGEON, com.runehive.util.Items.ABYSSAL_WHIP, com.runehive.util.Items.AHRIMS_ARMOUR_SET, com.runehive.util.Items.ARMADYL_CHAINSKIRT, com.runehive.util.Items.ARMADYL_CHESTPLATE, com.runehive.util.Items.ARMADYL_GODSWORD, com.runehive.util.Items.ARMADYL_HELMET, com.runehive.util.Items.BANDOS_BOOTS, com.runehive.util.Items.BANDOS_CHESTPLATE, com.runehive.util.Items.BANDOS_GODSWORD, com.runehive.util.Items.BANDOS_TASSETS, com.runehive.util.Items.COINS, com.runehive.util.Items.DHAROKS_ARMOUR_SET, com.runehive.util.Items.DRAGON_FULL_HELM, com.runehive.util.Items.DRAGON_HARPOON, com.runehive.util.Items.FIGHTER_HAT, com.runehive.util.Items.FIGHTER_TORSO, com.runehive.util.Items.GREATER_DEMON_MASK, com.runehive.util.Items.GUTHANS_ARMOUR_SET, com.runehive.util.Items.JUNGLE_DEMON_MASK, com.runehive.util.Items.KARILS_ARMOUR_SET, com.runehive.util.Items.LESSER_DEMON_MASK, com.runehive.util.Items.OLD_DEMON_MASK, com.runehive.util.Items.RANGERS_TUNIC, com.runehive.util.Items.SARADOMIN_GODSWORD, com.runehive.util.Items.SHARK, com.runehive.util.Items.TOXIC_BLOWPIPE, com.runehive.util.Items.TRIDENT_OF_THE_SEAS, com.runehive.util.Items.VERACS_ARMOUR_SET, and com.runehive.util.Items.ZAMORAK_GODSWORD.


The documentation for this class was generated from the following file: