RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
BronzeMysteryBox.java
1package com.osroyale.content.mysterybox.impl;
2
3import com.osroyale.content.mysterybox.MysteryBox;
4import com.osroyale.content.mysterybox.MysteryItem;
5import com.osroyale.util.Items;
6
7import static com.osroyale.content.mysterybox.MysteryRarity.*;
8
38
39public class BronzeMysteryBox extends MysteryBox {
40 @Override
41 protected String name() {
42 return "Bronze mystery box";
43 }
44
45 @Override
46 protected int item() {
47 return 6199;
48 }
49 @Override
50 protected MysteryItem[] rewards() {
51 return new MysteryItem[]{
52 new MysteryItem(Items.COINS, 150_000, COMMON),
53 new MysteryItem(Items.MANTA_RAY_2, 100, COMMON),
54 new MysteryItem(Items.DRAGON_BOOTS, 1, COMMON),
55 new MysteryItem(Items.ABYSSAL_WHIP, 1, COMMON),
56 new MysteryItem(Items.DRAGON_PLATELEGS, 1, COMMON),
57 new MysteryItem(Items.DRAGON_CHAINBODY, 1, COMMON),
58 new MysteryItem(Items.DRAGON_PLATESKIRT, 1, COMMON),
59 new MysteryItem(Items.BERSERKER_RING, 1, COMMON),
60 new MysteryItem(Items.SEERS_RING, 1, COMMON),
61 new MysteryItem(Items.ARCHERS_RING, 1, COMMON),
62 new MysteryItem(Items.INFINITY_HAT, 1, UNCOMMON),
63 new MysteryItem(Items.INFINITY_TOP, 1, UNCOMMON),
64 new MysteryItem(Items.INFINITY_BOTTOMS, 1, UNCOMMON),
65 new MysteryItem(Items.INFINITY_GLOVES, 1, UNCOMMON),
66 new MysteryItem(Items.INFINITY_BOOTS, 1, UNCOMMON),
67 new MysteryItem(Items.DARK_BOW, 1, UNCOMMON),
68 new MysteryItem(Items.GNOME_SCARF, 1, UNCOMMON),
69 new MysteryItem(Items.AMULET_OF_FURY, 1, COMMON),
70 new MysteryItem(Items.AMULET_OF_THE_DAMNED, 1, RARE),
71 new MysteryItem(Items.DRAGON_FULL_HELM, 1, RARE),
72 new MysteryItem(Items.FLIPPERS, 1, RARE),
73 new MysteryItem(Items.DRAGON_PICKAXE, 1, RARE),
74 new MysteryItem(Items.TRIDENT_OF_THE_SEAS, 1, RARE),
75 new MysteryItem(Items.GOLDEN_APRON, 1, EXOTIC),
76 new MysteryItem(Items.GOLDEN_CHEFS_HAT, 1, EXOTIC),
77 new MysteryItem(Items.SAMURAI_BOOTS, 1, EXOTIC),
78 new MysteryItem(Items.SAMURAI_GLOVES, 1, EXOTIC),
79 new MysteryItem(Items.SAMURAI_GREAVES, 1, EXOTIC),
80 new MysteryItem(Items.SAMURAI_SHIRT, 1, EXOTIC),
81 new MysteryItem(Items.SAMURAI_KASA, 1, EXOTIC)
82 };
83 }
84}