RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SilverMysteryBox.java
1package com.osroyale.content.mysterybox.impl;
2
3import com.osroyale.content.mysterybox.MysteryBox;
4import com.osroyale.content.mysterybox.MysteryItem;
5import com.osroyale.game.world.items.Item;
6import com.osroyale.util.Items;
7
8import static com.osroyale.content.mysterybox.MysteryRarity.*;
9
39
40public 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}