46public enum BrotherData {
47 AHRIM(1672,
new Position(3562, 3285),
new Position(3568, 3291),
new Position(3565, 3288),
new Position(3557, 9703, 3)),
48 GUTHAN(1674,
new Position(3575, 3279),
new Position(3580, 3286),
new Position(3577, 3282),
new Position(3534, 9704, 3)),
49 VERAC(1677,
new Position(3554, 3293),
new Position(3560, 3301),
new Position(3557, 3297),
new Position(3578, 9706, 3)),
50 KARIL(1675,
new Position(3563, 3273),
new Position(3568, 3278),
new Position(3566, 3275),
new Position(3546, 9684, 3)),
51 DHAROK(1673,
new Position(3573, 3295),
new Position(3578, 3300),
new Position(3575, 3298),
new Position(3556, 9718, 3)),
71 this.southWest = southWest;
72 this.northEast = northEast;
73 this.hillPosition = hillPosition;
74 this.cryptPosition = cryptPosition;
119 return cryptPosition;
122 public static boolean isBarrowsBrother(
Npc mob) {
124 if (brother.getNpcId() == mob.id) {
131 public static BrotherData getBarrowsBrother(Npc mob) {
132 for (BrotherData brother : values()) {
133 if (brother.getNpcId() == mob.id) {