Add Blast furnace plugin

This commit is contained in:
Seth
2018-02-14 08:32:33 -06:00
committed by Adam
parent fd81d32909
commit 9845e48875
9 changed files with 521 additions and 2 deletions

View File

@@ -198,7 +198,31 @@ public enum Varbits
* Nightmare Zone
*/
NMZ_ABSORPTION(3956, 1067, 5, 14),
NMZ_POINTS(3949, 1059, 0, 19);
NMZ_POINTS(3949, 1059, 0, 19),
/**
* Blast Furnace
*/
BLAST_FURNACE_COPPER_ORE(959, 549, 16, 23),
BLAST_FURNACE_TIN_ORE(950, 547, 8, 15),
BLAST_FURNACE_IRON_ORE(951, 547, 16, 23),
BLAST_FURNACE_COAL(949, 547, 0, 7),
BLAST_FURNACE_MITHRIL_ORE(952, 547, 24, 31),
BLAST_FURNACE_ADAMANTITE_ORE(953, 548, 0, 7),
BLAST_FURNACE_RUNITE_ORE(954, 548, 8, 15),
BLAST_FURNACE_SILVER_ORE(955, 548, 24, 31),
BLAST_FURNACE_GOLD_ORE(955, 548, 16, 23),
BLAST_FURNACE_BRONZE_BAR(941, 545, 0, 7),
BLAST_FURNACE_IRON_BAR(942, 545, 8, 15),
BLAST_FURNACE_STEEL_BAR(943, 545, 16, 23),
BLAST_FURNACE_MITHRIL_BAR(944, 545, 24, 31),
BLAST_FURNACE_ADAMANTITE_BAR(945, 546, 0, 7),
BLAST_FURNACE_RUNITE_BAR(946, 546, 8, 15),
BLAST_FURNACE_SILVER_BAR(948, 546, 24, 31),
BLAST_FURNACE_GOLD_BAR(947, 546, 16, 23),
BLAST_FURNACE_COFFER(5357, 795, 1, 31);
/**
* varbit id

View File

@@ -64,6 +64,7 @@ public class WidgetID
public static final int EXPERIENCE_DROP_GROUP_ID = 122;
public static final int PUZZLE_BOX_GROUP_ID = 306;
public static final int NIGHTMARE_ZONE_GROUP_ID = 202;
public static final int BLAST_FURNACE_GROUP_ID = 474;
static class WorldMap
{

View File

@@ -169,7 +169,9 @@ public enum WidgetInfo
PUZZLE_BOX(WidgetID.PUZZLE_BOX_GROUP_ID, WidgetID.PuzzleBox.VISIBLE_BOX),
NIGHTMARE_ZONE(WidgetID.NIGHTMARE_ZONE_GROUP_ID, 1);
NIGHTMARE_ZONE(WidgetID.NIGHTMARE_ZONE_GROUP_ID, 1),
BLAST_FURNACE_COFFER(WidgetID.BLAST_FURNACE_GROUP_ID, 0);
private final int groupId;
private final int childId;