diff --git a/2006Scape Client/src/main/java/ClientSettings.java b/2006Scape Client/src/main/java/ClientSettings.java index f1801123..6f36b636 100644 --- a/2006Scape Client/src/main/java/ClientSettings.java +++ b/2006Scape Client/src/main/java/ClientSettings.java @@ -7,6 +7,47 @@ import java.math.BigInteger; */ public class ClientSettings { + /** + * @QoL + * Require control key to zoom the client + */ + public static boolean CONTROL_KEY_ZOOMING = false; + + /** + * @QoL + * Show zoom level messages in chat when changing zoom levels + */ + public static boolean SHOW_ZOOM_LEVEL_MESSAGES = false; + /** + * @QoL + * Hide roofs + */ + public static boolean HIDE_ROOFS = false; + /** + * @QoL + * Hide buggy varrock sword shop snow + */ + public static boolean HIDE_BUGGY_VARROCK_SWORD_SHOP_SNOW = true; + /** + * @QoL + * Forces Server-Wide Snow floor + */ + public static boolean SNOW_FLOOR_FORCE_ENABLED = false; + /** + * @QoL + * Toggles Server-Wide Snow floor (for the designated month) + */ + public static boolean SNOW_FLOOR_ENABLED = true; + /** + * @QoL + * Forces Server-Wide Snow overlay + */ + public static boolean SNOW_OVERLAY_FORCE_ENABLED = false; + /** + * @QoL + * Toggles Server-Wide Snow overlay (for the designated month) + */ + public static boolean SNOW_OVERLAY_ENABLED = false; /** * @QoL * Enables Server-Wide Snow In The Designated Month diff --git a/2006Scape Client/src/main/java/Flo.java b/2006Scape Client/src/main/java/Flo.java index f66415f6..89b43cfc 100644 --- a/2006Scape Client/src/main/java/Flo.java +++ b/2006Scape Client/src/main/java/Flo.java @@ -35,7 +35,7 @@ public final class Flo { } else if (i == 1) { anInt390 = stream.read3Bytes(); Calendar date = new GregorianCalendar(); - if ((date.get(Calendar.MONTH) + 1) == 12) { + if (ClientSettings.SNOW_FLOOR_FORCE_ENABLED || (ClientSettings.SNOW_FLOOR_ENABLED && (date.get(Calendar.MONTH) + 1) == Integer.parseInt(ClientSettings.SNOW_MONTH.substring(1)))) { anInt390 = 0xffffff; } method262(anInt390); diff --git a/2006Scape Client/src/main/java/Game.java b/2006Scape Client/src/main/java/Game.java index 6c4745a7..e565ebad 100644 --- a/2006Scape Client/src/main/java/Game.java +++ b/2006Scape Client/src/main/java/Game.java @@ -2975,7 +2975,11 @@ public class Game extends RSApplet { if (anInt1011 > 0) { anInt1011--; } - for (int j = 0; j < 5; j++) { + //TODO: Technically, this loop should be < 5 for authenticity, but until we reduce server inefficiencies + //(for example killing a bunch of cows results in client lag, + //likely from all the items on the ground for example), < 100 is fine. + //OSRS uses < 100 and there are no drawbacks from having this < 100. + for (int j = 0; j < 100; j++) { if (!parsePacket()) { break; } @@ -3758,7 +3762,7 @@ public class Game extends RSApplet { worldController.method312(k - 4, j - 4); } } - if (l == 1062) { + if (l == 1062) { //Fifth click anInt924 += baseX; if (anInt924 >= 113) { stream.createFrame(183); @@ -5034,6 +5038,10 @@ public class Game extends RSApplet { if (inputString.equals("::gfxtgl") || inputString.equals("::tglgfx") || inputString.equals("::togglerender") || inputString.equals("::togglegfx")) { graphicsEnabled = !graphicsEnabled; } + if (inputString.equals("::crtlkeyzoom") || inputString.equals("::controlkeyzoom")) { + ClientSettings.CONTROL_KEY_ZOOMING = !ClientSettings.CONTROL_KEY_ZOOMING; + pushMessage("Your control key zooming is now: " + (ClientSettings.CONTROL_KEY_ZOOMING ? "enabled" : "disabled"), 0, ""); + } if (myPrivilege >= 2) { if (inputString.equals("::noclip")) for (int k1 = 0; k1 < 4; k1++) @@ -11571,7 +11579,7 @@ public class Game extends RSApplet { // 15774 = Good/Bad Password // 15767 = Drama Type if (l7 == 15244) { - if (Flo.getTodaysDate().contains(ClientSettings.SNOW_MONTH)) { + if (ClientSettings.SNOW_OVERLAY_FORCE_ENABLED || (ClientSettings.SNOW_OVERLAY_ENABLED && Flo.getTodaysDate().contains(ClientSettings.SNOW_MONTH))) { openInterfaceID = 15819; } else { openInterfaceID = 15801; @@ -11814,8 +11822,8 @@ public class Game extends RSApplet { draw3dScreen(); if (showInfo) { int debugX = 0; - int debugY = 249; - int debugItems = 4; + int debugY = 234; + int debugItems = 5; int debugWidth = 140; int debugHeight = 25 + (debugItems * 15); int fill = 0x5d5447; @@ -11842,6 +11850,8 @@ public class Game extends RSApplet { chatTextDrawingArea.textRightShadow(true, debugX + debugWidth - 4, Color.YELLOW.hashCode(), (myPlayer.smallX[0] + baseX) + ", " + (myPlayer.smallY[0] + baseY), debugY); chatTextDrawingArea.textLeftShadow(true, debugX + 4, Color.WHITE.hashCode(), "Interface:", debugY += 15); chatTextDrawingArea.textRightShadow(true, debugX + debugWidth - 4, Color.YELLOW.hashCode(), "" + openInterfaceID, debugY); + chatTextDrawingArea.textLeftShadow(true, debugX + 4, Color.WHITE.hashCode(), "Zoom level:", debugY += 15); + chatTextDrawingArea.textRightShadow(true, debugX + debugWidth - 4, Color.YELLOW.hashCode(), "" + zoom, debugY); } if (customSettingShowExperiencePerHour) { @@ -12619,12 +12629,20 @@ public class Game extends RSApplet { tabAreaAltered = true; break; case KeyEvent.VK_PAGE_UP: - if (zoom > -1) + if (zoom > -1) { zoom--; + if (ClientSettings.SHOW_ZOOM_LEVEL_MESSAGES) { + pushMessage("Your zoom level is now: " + zoom, 0, ""); + } + } break; case KeyEvent.VK_PAGE_DOWN: - if (zoom < (WorldController.drawDistance / 3)) + if (zoom < (WorldController.drawDistance / 3)) { zoom++; + if (ClientSettings.SHOW_ZOOM_LEVEL_MESSAGES) { + pushMessage("Your zoom level is now: " + zoom, 0, ""); + } + } break; case KeyEvent.VK_V: if (keyevent.isControlDown()) { @@ -12783,7 +12801,7 @@ public class Game extends RSApplet { inputTaken = true; } if (interfaceID == 15244) { - if (Flo.getTodaysDate().contains(ClientSettings.SNOW_MONTH)) { + if (ClientSettings.SNOW_OVERLAY_FORCE_ENABLED || (ClientSettings.SNOW_OVERLAY_ENABLED && Flo.getTodaysDate().contains(ClientSettings.SNOW_MONTH))) { openInterfaceID = 15819; } else { openInterfaceID = 15801; @@ -12806,14 +12824,25 @@ public class Game extends RSApplet { public final void mouseWheelMoved(MouseWheelEvent e) { int notches = e.getWheelRotation(); + if (ClientSettings.CONTROL_KEY_ZOOMING && !e.isControlDown()) { + return; + } // If mouse over main game screen, without anything else opened if (openInterfaceID == -1 && mouseX < 515 && mouseY < 340) { if (notches < 0) { - if (zoom > -1) + if (zoom > -1) { zoom--; + if (ClientSettings.SHOW_ZOOM_LEVEL_MESSAGES) { + pushMessage("Your zoom level is now: " + zoom, 0, ""); + } + } } else { - if (zoom < (WorldController.drawDistance / 3)) + if (zoom < (WorldController.drawDistance / 3)) { zoom++; + if (ClientSettings.SHOW_ZOOM_LEVEL_MESSAGES) { + pushMessage("Your zoom level is now: " + zoom, 0, ""); + } + } } } } diff --git a/2006Scape Client/src/main/java/Main.java b/2006Scape Client/src/main/java/Main.java index 4786b0f5..d36fbab3 100644 --- a/2006Scape Client/src/main/java/Main.java +++ b/2006Scape Client/src/main/java/Main.java @@ -32,13 +32,28 @@ public final class Main { ClientSettings.BILINEAR_MINIMAP_FILTERING = true; ClientSettings.FIX_TRANSPARENCY_OVERFLOW = true; ClientSettings.FULL_512PX_VIEWPORT = true; - Game.customSettingVisiblePlayerNames = true; - Game.customSettingMinItemValue = 1000; + ClientSettings.CONTROL_KEY_ZOOMING = true; break; case "-no-nav": - case"-disable-nav": + case "-disable-nav": ClientSettings.SHOW_NAVBAR = false; break; + case"-no-snow": + case"-hide-snow": + case"-disable-snow": + ClientSettings.SNOW_FLOOR_ENABLED = false; + ClientSettings.SNOW_FLOOR_FORCE_ENABLED = false; + ClientSettings.SNOW_OVERLAY_FORCE_ENABLED = false; + ClientSettings.SNOW_OVERLAY_ENABLED = false; + break; + case"-no-roofs": + case"-hide-roofs": + case"-disable-roofs": + ClientSettings.HIDE_ROOFS = true; + break; + case"-show-zoom": + ClientSettings.SHOW_ZOOM_LEVEL_MESSAGES = true; + break; } if (args[i].startsWith("-") && (i + 1) < args.length && !args[i + 1].startsWith("-")) { switch(args[i]) { diff --git a/2006Scape Client/src/main/java/ObjectManager.java b/2006Scape Client/src/main/java/ObjectManager.java index 84525e2c..25895efa 100644 --- a/2006Scape Client/src/main/java/ObjectManager.java +++ b/2006Scape Client/src/main/java/ObjectManager.java @@ -146,7 +146,7 @@ final class ObjectManager { k15 -= anIntArray127[k18]; k16 -= anIntArray128[k18]; } - if (k17 >= 1 && k17 < anInt147 - 1 && (!lowMem || (aByteArrayArrayArray149[0][l6][k17] & 2) != 0 || (aByteArrayArrayArray149[l][l6][k17] & 0x10) == 0 && method182(k17, l, l6) == anInt131)) { + if (k17 >= 1 && k17 < anInt147 - 1 && ((!hideBuggyVarrockSwordShopSnow && !hideRoofs && !lowMem) || (aByteArrayArrayArray149[0][l6][k17] & 2) != 0 || (aByteArrayArrayArray149[l][l6][k17] & 0x10) == 0 && method182(k17, l, l6) == anInt131)) { if (l < anInt145) { anInt145 = l; } @@ -456,7 +456,7 @@ final class ObjectManager { } private void method175(int i, WorldController worldController, CollisionMap class11, int j, int k, int l, int i1, int j1) { - if (lowMem && (aByteArrayArrayArray149[0][l][i] & 2) == 0) { + if ((hideRoofs || lowMem) && (aByteArrayArrayArray149[0][l][i] & 2) == 0) { if ((aByteArrayArrayArray149[k][l][i] & 0x10) != 0) { return; } @@ -1355,6 +1355,10 @@ final class ObjectManager { private final byte[][][] aByteArrayArrayArray148; private final byte[][][] aByteArrayArrayArray149; static boolean lowMem = true; + + static boolean hideRoofs = ClientSettings.HIDE_ROOFS; + + static boolean hideBuggyVarrockSwordShopSnow = ClientSettings.HIDE_BUGGY_VARROCK_SWORD_SHOP_SNOW; //There is some buggy snow near Varrock sword shop, let's hide it. I know, this is not ideal, but it does work. private static final int anIntArray152[] = {1, 2, 4, 8}; } diff --git a/2006Scape Server/data/cfg/npcDefinitions.json b/2006Scape Server/data/cfg/npcDefinitions.json new file mode 100644 index 00000000..f9812ec5 --- /dev/null +++ b/2006Scape Server/data/cfg/npcDefinitions.json @@ -0,0 +1,134246 @@ +[ + { + "id": 0, + "name": "Hans", + "examine": "Servant of the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 7, + "name": "Farmer", + "examine": "He grows the crops in this area.", + "respawn": 10, + "combat": 7, + "hitpoints": 12, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 412, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 8, + "name": "Thief", + "examine": "Known for his light-fingered qualities.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 9, + "name": "Guard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 412, + "defenceAnim": 403, + "deathAnim": 836, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 10, + "name": "Schoolgirl", + "examine": "She looks happy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 11, + "name": "Tramp", + "examine": "A man down on his luck.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 12, + "name": "Barbarian", + "examine": "Not very civilised looking.", + "respawn": 10, + "combat": 7, + "hitpoints": 10, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 13, + "name": "Wizard", + "examine": "Slightly magical.", + "respawn": 10, + "combat": 9, + "hitpoints": 14, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 14, + "name": "Druid", + "examine": "Loves nature.", + "respawn": 10, + "combat": 33, + "hitpoints": 30, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 15, + "name": "Warrior woman", + "examine": "Not very fashion conscious.", + "respawn": 10, + "combat": 24, + "hitpoints": 20, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 16, + "name": "Man", + "examine": "One of the citizens of Al-Kharid.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 17, + "name": "Schoolgirl", + "examine": "With a hop and a skip.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 3, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 18, + "name": "Al-Kharid warrior", + "examine": "Part of Al-Kharid\u0027s elite fighting force.", + "respawn": 10, + "combat": 9, + "hitpoints": 10, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 19, + "name": "White Knight", + "examine": "Shiny armour!", + "respawn": 10, + "combat": 36, + "hitpoints": 10, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 20, + "name": "Paladin", + "examine": "A holy warrior.", + "respawn": 10, + "combat": 62, + "hitpoints": 57, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 74, + "defenceMelee": 74, + "defenceRange": 74, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 21, + "name": "Hero", + "examine": "Heroic!", + "respawn": 10, + "combat": 69, + "hitpoints": 83, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 107, + "defenceMelee": 107, + "defenceRange": 107, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 22, + "name": "Forester", + "examine": "They love the forests.", + "respawn": 10, + "combat": 15, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 23, + "name": "Knight of Ardougne", + "examine": "A member of Ardougne\u0027s militia.", + "respawn": 10, + "combat": 46, + "hitpoints": 50, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 24, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 25, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 26, + "name": "Knight of Ardougne", + "examine": "To protect and serve the populace of Ardougne.", + "respawn": 10, + "combat": 46, + "hitpoints": 50, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 27, + "name": "Archer", + "examine": "Good with arrows.", + "respawn": 10, + "combat": 37, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 426, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 28, + "name": "Zoo keeper", + "examine": "Enjoys locking up animals in small pens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 29, + "name": "Chuck", + "examine": "What restful music!", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 30, + "name": "Barman", + "examine": "What restful music!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 31, + "name": "Priest", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 32, + "name": "Guard", + "examine": "Keeps the peace... kind of.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 33, + "name": "Door man", + "examine": "What a boring job he has.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 34, + "name": "Watchman", + "examine": "Watches stuff. But who watches him?", + "respawn": 10, + "combat": 33, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 35, + "name": "Soldier", + "examine": "A soldier of the town of Yanille.", + "respawn": 10, + "combat": 28, + "hitpoints": 22, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 36, + "name": "Wyson the gardener", + "examine": "The head gardener.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 37, + "name": "Sigbert the Adventurer", + "examine": "A bold knight famed for his travels.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 38, + "name": "Shipyard worker", + "examine": "Builds ships for a living.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 39, + "name": "Shipyard worker", + "examine": "Builds ships for a living.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 40, + "name": "Shark", + "examine": "Let\u0027s not go skinny dipping eh?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 41, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 10, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 42, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 43, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 44, + "name": "Duck", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 7, + "defenceAnim": 8, + "deathAnim": 9, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 45, + "name": "Duck", + "examine": "She can look after my money.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 7, + "defenceAnim": 8, + "deathAnim": 9, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 46, + "name": "Duckling", + "examine": "Quackers.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 7, + "defenceAnim": 8, + "deathAnim": 9, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 47, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2705, + "defenceAnim": 2706, + "deathAnim": 2707, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 48, + "name": "Oomlie bird", + "examine": "A jungle version of the chicken, but more vicious.", + "respawn": 10, + "combat": 46, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 49, + "name": "Hellhound", + "examine": "Hello, nice doggy...", + "respawn": 10, + "combat": 122, + "hitpoints": 116, + "maxHit": 11, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 158, + "defenceAnim": 159, + "deathAnim": 161, + "attackBonus": 150, + "defenceMelee": 150, + "defenceRange": 150, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 50, + "name": "King Black Dragon", + "examine": "The biggest, meanest dragon around.", + "respawn": 60, + "combat": 276, + "hitpoints": 240, + "maxHit": 25, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 25, + "defenceAnim": 26, + "deathAnim": 28, + "attackBonus": 250, + "defenceMelee": 290, + "defenceRange": 300, + "defenceMage": 230, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 51, + "name": "Baby dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 25, + "defenceAnim": 26, + "deathAnim": 28, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 52, + "name": "Baby dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 25, + "defenceAnim": 26, + "deathAnim": 28, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 53, + "name": "Red dragon", + "examine": "A big powerful dragon.", + "respawn": 40, + "combat": 152, + "hitpoints": 140, + "maxHit": 14, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 91, + "defenceAnim": 89, + "deathAnim": 92, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 54, + "name": "Black dragon", + "examine": "A fierce dragon with black scales!", + "respawn": 40, + "combat": 227, + "hitpoints": 190, + "maxHit": 21, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 91, + "defenceAnim": 89, + "deathAnim": 92, + "attackBonus": 247, + "defenceMelee": 247, + "defenceRange": 247, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 55, + "name": "Blue dragon", + "examine": "A mother dragon.", + "respawn": 40, + "combat": 111, + "hitpoints": 105, + "maxHit": 10, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 91, + "defenceAnim": 89, + "deathAnim": 92, + "attackBonus": 136, + "defenceMelee": 136, + "defenceRange": 136, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 56, + "name": "Dryad", + "examine": "A wood nymph.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 57, + "name": "Fairy", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 58, + "name": "Shadow spider", + "examine": "Is it a spider or is it a shadow?", + "respawn": 10, + "combat": 52, + "hitpoints": 55, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 144, + "deathAnim": 146, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 59, + "name": "Giant spider", + "examine": "I think this spider has been genetically modified.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 144, + "deathAnim": 146, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 60, + "name": "Giant spider", + "examine": "I think this spider has been genetically modified.", + "respawn": 10, + "combat": 27, + "hitpoints": 33, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 144, + "deathAnim": 146, + "attackBonus": 42, + "defenceMelee": 42, + "defenceRange": 42, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 61, + "name": "Spider", + "examine": "Incey wincey.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 280, + "defenceAnim": 279, + "deathAnim": 273, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 62, + "name": "Jungle spider", + "examine": "A barely visible deadly jungle spider.", + "respawn": 10, + "combat": 44, + "hitpoints": 50, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 63, + "name": "Deadly red spider", + "examine": "I think this spider has been genetically modified.", + "respawn": 10, + "combat": 34, + "hitpoints": 35, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 45, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 64, + "name": "Ice spider", + "examine": "I think this spider has been genetically modified.", + "respawn": 10, + "combat": 61, + "hitpoints": 65, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 84, + "defenceMelee": 84, + "defenceRange": 84, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 65, + "name": "Leprechaun", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 12, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 192, + "defenceAnim": 194, + "deathAnim": 196, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 66, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 190, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 67, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 190, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 68, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 190, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 69, + "name": "Lizard man", + "examine": "A scaly reptilian creature.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 70, + "name": "Turael", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 71, + "name": "Orc", + "examine": "Ugly, smelly and full of bad attitude.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 72, + "name": "Troll", + "examine": "A hideously deformed creature.", + "respawn": 10, + "combat": 69, + "hitpoints": 10, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 73, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 74, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 75, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 76, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 77, + "name": "Summoned Zombie", + "examine": "The living dead.", + "respawn": 10, + "combat": 13, + "hitpoints": 10, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 78, + "name": "Giant bat", + "examine": "An annoying flappy thing.", + "respawn": 10, + "combat": 27, + "hitpoints": 32, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 30, + "defenceAnim": 31, + "deathAnim": 36, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 41, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 79, + "name": "Death wing", + "examine": "A shadowy, barely visible flying entity from some evil place.", + "respawn": 10, + "combat": 83, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 30, + "defenceAnim": 31, + "deathAnim": 36, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 80, + "name": "Camel", + "examine": "Oh, it\u0027s a camel.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 81, + "name": "Cow", + "examine": "Converts grass to beef.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 10, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 82, + "name": "Lesser demon", + "examine": "Lesser, but still pretty big.", + "respawn": 10, + "combat": 82, + "hitpoints": 79, + "maxHit": 8, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 102, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 83, + "name": "Greater demon", + "examine": "Big, red, and incredibly evil.", + "respawn": 10, + "combat": 92, + "hitpoints": 87, + "maxHit": 16, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 84, + "name": "Black Demon", + "examine": "A big, scary, jet-black demon.", + "respawn": 10, + "combat": 172, + "hitpoints": 157, + "maxHit": 18, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 204, + "defenceMelee": 204, + "defenceRange": 204, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 85, + "name": "Golem", + "examine": "A creature made from clay.", + "respawn": 10, + "combat": 55, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 86, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 87, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 6, + "hitpoints": 10, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 88, + "name": "Dungeon rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 12, + "hitpoints": 12, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 89, + "name": "Unicorn", + "examine": "Horse with a horn.", + "respawn": 10, + "combat": 15, + "hitpoints": 19, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 289, + "defenceAnim": 290, + "deathAnim": 292, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 90, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 37, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 91, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 21, + "hitpoints": 24, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 31, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 92, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 25, + "hitpoints": 17, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 22, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 93, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 45, + "hitpoints": 59, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 76, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 94, + "name": "Skeleton Mage", + "examine": "An undead worker of dark magic.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 95, + "name": "Wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 64, + "hitpoints": 69, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 89, + "defenceMelee": 89, + "defenceRange": 89, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 96, + "name": "White wolf", + "examine": "A vicious mountain wolf.", + "respawn": 10, + "combat": 25, + "hitpoints": 34, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 44, + "defenceMelee": 44, + "defenceRange": 44, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 97, + "name": "White wolf", + "examine": "A vicious mountain wolf.", + "respawn": 10, + "combat": 38, + "hitpoints": 35, + "maxHit": 4, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 98, + "name": "Dog", + "examine": "Bow wow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 99, + "name": "Guard dog", + "examine": "He doesn\u0027t seem pleased to see me.", + "respawn": 10, + "combat": 44, + "hitpoints": 49, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 63, + "defenceMelee": 63, + "defenceRange": 63, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 100, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 101, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 102, + "name": "Goblin", + "examine": "These goblins have grown strong.", + "respawn": 10, + "combat": 13, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 103, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 123, + "defenceAnim": 124, + "deathAnim": 126, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 104, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 123, + "defenceAnim": 124, + "deathAnim": 126, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 105, + "name": "Grizzly bear", + "examine": "Eek! A bear!", + "respawn": 10, + "combat": 21, + "hitpoints": 27, + "maxHit": 4, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 35, + "defenceMelee": 35, + "defenceRange": 35, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 106, + "name": "Black bear", + "examine": "Eek! A bear!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 107, + "name": "Scorpion", + "examine": "An extremely vicious scorpion.", + "respawn": 10, + "combat": 14, + "hitpoints": 17, + "maxHit": 4, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 246, + "defenceAnim": 247, + "deathAnim": 248, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 108, + "name": "Poison Scorpion", + "examine": "It has a very vicious looking tail.", + "respawn": 10, + "combat": 20, + "hitpoints": 23, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 246, + "defenceAnim": 247, + "deathAnim": 248, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": true + }, + { + "id": 109, + "name": "Pit Scorpion", + "examine": "Tiny, annoying, stinging thing.", + "respawn": 10, + "combat": 28, + "hitpoints": 32, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 270, + "defenceAnim": 271, + "deathAnim": 273, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 110, + "name": "Fire giant", + "examine": "A very large elemental adversary.", + "respawn": 10, + "combat": 86, + "hitpoints": 111, + "maxHit": 12, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 144, + "defenceMelee": 144, + "defenceRange": 144, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 111, + "name": "Ice giant", + "examine": "He\u0027s got icicles in his beard.", + "respawn": 10, + "combat": 53, + "hitpoints": 70, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 112, + "name": "Moss giant", + "examine": "His beard seems to have a life of its own.", + "respawn": 10, + "combat": 42, + "hitpoints": 60, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 113, + "name": "Jogre", + "examine": "An aggressive humanoid.", + "respawn": 10, + "combat": 53, + "hitpoints": 60, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 114, + "name": "Ogre", + "examine": "An angry Ogre in a funny hat.", + "respawn": 10, + "combat": 53, + "hitpoints": 60, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 115, + "name": "Ogre", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 53, + "hitpoints": 60, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 116, + "name": "Cyclops", + "examine": "A one-eyed man eater.", + "respawn": 10, + "combat": 56, + "hitpoints": 80, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 117, + "name": "Hill Giant", + "examine": "A very large foe.", + "respawn": 10, + "combat": 28, + "hitpoints": 35, + "maxHit": 4, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 118, + "name": "Dwarf", + "examine": "A short angry guy.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 99, + "defenceAnim": 100, + "deathAnim": 102, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 119, + "name": "Chaos dwarf", + "examine": "A dwarf gone bad.", + "respawn": 10, + "combat": 48, + "hitpoints": 61, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 99, + "defenceAnim": 100, + "deathAnim": 102, + "attackBonus": 79, + "defenceMelee": 79, + "defenceRange": 79, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 120, + "name": "Dwarf", + "examine": "A mountain dwelling short angry guy.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 99, + "defenceAnim": 100, + "deathAnim": 102, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 121, + "name": "Dwarf", + "examine": "A short angry guy.", + "respawn": 10, + "combat": 9, + "hitpoints": 10, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 99, + "defenceAnim": 100, + "deathAnim": 102, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 122, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature.", + "respawn": 10, + "combat": 28, + "hitpoints": 29, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 164, + "defenceAnim": 165, + "deathAnim": 167, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 123, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature, with a spear.", + "respawn": 10, + "combat": 42, + "hitpoints": 49, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 163, + "defenceAnim": 165, + "deathAnim": 167, + "attackBonus": 63, + "defenceMelee": 63, + "defenceRange": 63, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 124, + "name": "Earth warrior", + "examine": "A strange, inhuman, elemental warrior.", + "respawn": 10, + "combat": 51, + "hitpoints": 54, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 70, + "defenceMelee": 70, + "defenceRange": 70, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 125, + "name": "Ice warrior", + "examine": "A cold-hearted elemental warrior.", + "respawn": 10, + "combat": 57, + "hitpoints": 59, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 126, + "name": "Otherworldly being", + "examine": "Is he invisible or just a set of floating clothing?", + "respawn": 10, + "combat": 64, + "hitpoints": 66, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 85, + "defenceMelee": 85, + "defenceRange": 85, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 127, + "name": "Magic axe", + "examine": "A magic axe with a mind of its own.", + "respawn": 10, + "combat": 42, + "hitpoints": 44, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 185, + "defenceAnim": 186, + "deathAnim": 188, + "attackBonus": 57, + "defenceMelee": 57, + "defenceRange": 57, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 128, + "name": "Snake", + "examine": "A slithering serpent.", + "respawn": 10, + "combat": 5, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 275, + "defenceAnim": 276, + "deathAnim": 278, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 129, + "name": "Skavid", + "examine": "Servant race to the ogres.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 255, + "defenceAnim": 256, + "deathAnim": 258, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 130, + "name": "Yeti", + "examine": "The abominable snowman.", + "respawn": 10, + "combat": 58, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 294, + "defenceAnim": 295, + "deathAnim": 297, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 131, + "name": "Penguin", + "examine": "An inhabitant of icy regions.", + "respawn": 10, + "combat": 2, + "hitpoints": 4, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 237, + "defenceAnim": 234, + "deathAnim": 236, + "attackBonus": 5, + "defenceMelee": 5, + "defenceRange": 5, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 132, + "name": "Monkey", + "examine": "Perhaps our oldest relatives?", + "respawn": 10, + "combat": 3, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 220, + "defenceAnim": 221, + "deathAnim": 223, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 133, + "name": "Black unicorn", + "examine": "A unicorn with a blackened heart.", + "respawn": 10, + "combat": 27, + "hitpoints": 29, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 289, + "defenceAnim": 290, + "deathAnim": 292, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 134, + "name": "Poison spider", + "examine": "I think this spider has been genetically modified.", + "respawn": 10, + "combat": 64, + "hitpoints": 65, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 84, + "defenceMelee": 84, + "defenceRange": 84, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 135, + "name": "Mammoth", + "examine": "A woolly, elephantine monster.", + "respawn": 10, + "combat": 41, + "hitpoints": 10, + "maxHit": 4, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 136, + "name": "Terrorbird", + "examine": "These gnomes know how to get around!", + "respawn": 10, + "combat": 28, + "hitpoints": 44, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 322, + "defenceAnim": 323, + "deathAnim": 325, + "attackBonus": 57, + "defenceMelee": 57, + "defenceRange": 57, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 137, + "name": "Mounted terrorbird gnome", + "examine": "Aaw baby chick!", + "respawn": 10, + "combat": 31, + "hitpoints": 36, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 327, + "defenceAnim": 329, + "deathAnim": 331, + "attackBonus": 46, + "defenceMelee": 46, + "defenceRange": 46, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 138, + "name": "Mounted terrorbird gnome", + "examine": "A giant raptor.", + "respawn": 10, + "combat": 49, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 328, + "defenceAnim": 329, + "deathAnim": 331, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 139, + "name": "Entrana firebird", + "examine": "A giant raptor.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 115, + "defenceAnim": 116, + "deathAnim": 118, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 140, + "name": "Souless", + "examine": "A servant to Iban.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 338, + "defenceAnim": 339, + "deathAnim": 340, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 141, + "name": "Big Wolf", + "examine": "Must be the pack leader.", + "respawn": 10, + "combat": 73, + "hitpoints": 74, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 142, + "name": "Wolf", + "examine": "A social killer.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 143, + "name": "Jungle Wolf", + "examine": "A rare jungle wolf - specific to the Kharazi jungle.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 144, + "name": "King Scorpion", + "examine": "Wow! Scorpions shouldn\u0027t grow that big.", + "respawn": 10, + "combat": 32, + "hitpoints": 31, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 246, + "defenceAnim": 247, + "deathAnim": 248, + "attackBonus": 40, + "defenceMelee": 40, + "defenceRange": 40, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 145, + "name": "NPC #145", + "examine": "It\u0027s an NPC.", + "respawn": 0, + "combat": 57, + "hitpoints": 59, + "maxHit": 0, + "size": 1, + "attackSpeed": 10000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 146, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 147, + "name": "Cormorant", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 148, + "name": "Albatross", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 149, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 150, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 151, + "name": "Fly trap", + "examine": "No flies on me.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 152, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 85, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 153, + "name": "Butterfly", + "examine": "These look much better in the wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 154, + "name": "Butterfly", + "examine": "I love butterflies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 155, + "name": "Butterfly", + "examine": "It\u0027s a Blue Morpho Butterfly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 156, + "name": "Butterfly", + "examine": "It\u0027s a Tiger Swallowtail Butterfly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 157, + "name": "Butterfly", + "examine": "It\u0027s a Viceroy Butterfly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 158, + "name": "Shadow warrior", + "examine": "A fighter from the supernatural world. He\u0027s a shadow of his former self.", + "respawn": 10, + "combat": 48, + "hitpoints": 67, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 87, + "defenceMelee": 87, + "defenceRange": 87, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 159, + "name": "Gnome child", + "examine": "Small, even by gnome standards.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 191, + "defenceAnim": 194, + "deathAnim": 196, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 160, + "name": "Gnome child", + "examine": "Small, even by gnome standards.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 191, + "defenceAnim": 194, + "deathAnim": 196, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 161, + "name": "Gnome child", + "examine": "Small, even by gnome standards.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 191, + "defenceAnim": 194, + "deathAnim": 196, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 162, + "name": "Gnome trainer", + "examine": "He can advise on training.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 163, + "name": "Gnome guard", + "examine": "A tree gnome guard.", + "respawn": 10, + "combat": 23, + "hitpoints": 31, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 192, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 40, + "defenceMelee": 40, + "defenceRange": 40, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 164, + "name": "Gnome guard", + "examine": "A tree gnome guard.", + "respawn": 10, + "combat": 23, + "hitpoints": 31, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 192, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 40, + "defenceMelee": 40, + "defenceRange": 40, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 165, + "name": "Gnome shop keeper", + "examine": "Sells gnomish things.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 166, + "name": "Gnome banker", + "examine": "Banks gnomish things.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 167, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 168, + "name": "Gnome woman", + "examine": "A female gnome.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 190, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 169, + "name": "Gnome woman", + "examine": "A female gnome.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 190, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 170, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens, apparently trying to be an explorer.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 171, + "name": "Brimstail", + "examine": "Small but wise, he is.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 172, + "name": "Dark wizard", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 20, + "hitpoints": 24, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 173, + "name": "Invrigar the Necromancer", + "examine": "An evil user of Magic powers", + "respawn": 10, + "combat": 20, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 174, + "name": "Dark wizard", + "examine": "He works evil magic.", + "respawn": 10, + "combat": 7, + "hitpoints": 12, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 175, + "name": "Mugger", + "examine": "He jumps out and attacks people.", + "respawn": 10, + "combat": 6, + "hitpoints": 8, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 176, + "name": "Witch", + "examine": "The hat\u0027s a dead give away.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 177, + "name": "Witch", + "examine": "The hat\u0027s a dead give away.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 178, + "name": "Black Knight", + "examine": "A dark-hearted knight.", + "respawn": 10, + "combat": 33, + "hitpoints": 42, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 54, + "defenceMelee": 54, + "defenceRange": 54, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 179, + "name": "Black Knight", + "examine": "A dark-hearted knight.", + "respawn": 10, + "combat": 33, + "hitpoints": 42, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 54, + "defenceMelee": 54, + "defenceRange": 54, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 180, + "name": "Highwayman", + "examine": "He holds up passers by.", + "respawn": 10, + "combat": 5, + "hitpoints": 13, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 181, + "name": "Chaos druid", + "examine": "A crazy, evil druid.", + "respawn": 10, + "combat": 13, + "hitpoints": 20, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 182, + "name": "Pirate", + "examine": "Yar! Shiver me timbers!", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 183, + "name": "Pirate", + "examine": "Avast ye scurvy land lubbers!", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 184, + "name": "Pirate", + "examine": "This one\u0027s had too much to drink!", + "respawn": 10, + "combat": 26, + "hitpoints": 23, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 185, + "name": "Pirate", + "examine": "A fine example of piracy\u0027s equal opportunities program.", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 186, + "name": "Thug", + "examine": "Low on brains, high on aggression.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 187, + "name": "Rogue", + "examine": "Rogueish.", + "respawn": 10, + "combat": 15, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 188, + "name": "Monk of Zamorak", + "examine": "An evil human cleric.", + "respawn": 10, + "combat": 22, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 189, + "name": "Monk of Zamorak", + "examine": "An evil human cleric.", + "respawn": 10, + "combat": 17, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 190, + "name": "Monk of Zamorak", + "examine": "An evil human cleric.", + "respawn": 10, + "combat": 45, + "hitpoints": 42, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 54, + "defenceMelee": 54, + "defenceRange": 54, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 191, + "name": "Tribesman", + "examine": "A primitive warrior.", + "respawn": 10, + "combat": 32, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 192, + "name": "Dark warrior", + "examine": "A warrior touched by chaos.", + "respawn": 10, + "combat": 8, + "hitpoints": 17, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 193, + "name": "Chaos druid warrior", + "examine": "A crazy evil druid.", + "respawn": 10, + "combat": 37, + "hitpoints": 40, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 194, + "name": "Necromancer", + "examine": "A crazy evil necromancer.", + "respawn": 10, + "combat": 26, + "hitpoints": 41, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 53, + "defenceMelee": 53, + "defenceRange": 53, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 195, + "name": "Bandit", + "examine": "A wilderness outlaw.", + "respawn": 10, + "combat": 22, + "hitpoints": 27, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 35, + "defenceMelee": 35, + "defenceRange": 35, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 196, + "name": "Guard Bandit", + "examine": "Bandit Camp guard.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 197, + "name": "Barbarian guard", + "examine": "Not very civilised looking.", + "respawn": 10, + "combat": 8, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 198, + "name": "Guildmaster", + "examine": "Master of the Champions\u0027 Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 199, + "name": "Gunthor the brave", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 29, + "hitpoints": 35, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 200, + "name": "Lord Daquarius", + "examine": "A mighty warrior!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 201, + "name": "Jailer", + "examine": "Guards prisoners for the black knights.", + "respawn": 10, + "combat": 47, + "hitpoints": 47, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 61, + "defenceMelee": 61, + "defenceRange": 61, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 202, + "name": "Black Heather", + "examine": "Has a fearsome scowl.", + "respawn": 10, + "combat": 34, + "hitpoints": 38, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 49, + "defenceMelee": 49, + "defenceRange": 49, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 203, + "name": "Donny the lad", + "examine": "Has a fearsome posture.", + "respawn": 10, + "combat": 34, + "hitpoints": 37, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 48, + "defenceMelee": 48, + "defenceRange": 48, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 204, + "name": "Speedy Keith", + "examine": "Nice hair.", + "respawn": 10, + "combat": 34, + "hitpoints": 37, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 48, + "defenceMelee": 48, + "defenceRange": 48, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 205, + "name": "Salarin the twisted", + "examine": "A crazy, evil druid.", + "respawn": 10, + "combat": 70, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 206, + "name": "Guard", + "examine": "A dwarven guard.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 99, + "defenceAnim": 100, + "deathAnim": 102, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 207, + "name": "Lollk", + "examine": "A young Dwarf lad.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 208, + "name": "Captain Lawgof", + "examine": "The head honcho around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 209, + "name": "Nulodion", + "examine": "The Dwarven armoury engineer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 210, + "name": "Grail Maiden", + "examine": "She looks serene.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 211, + "name": "Sir Percival", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 212, + "name": "King Percival", + "examine": "A former Knight of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 213, + "name": "Merlin", + "examine": "A powerful Wizard of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 214, + "name": "Peasant", + "examine": "He looks unhappy...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 215, + "name": "Peasant", + "examine": "He looks happy...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 216, + "name": "High Priest", + "examine": "High Priest of Entrana.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 217, + "name": "Crone", + "examine": "A crone.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 218, + "name": "Galahad", + "examine": "A former Knight of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 219, + "name": "Fisherman", + "examine": "It\u0027s a fisherman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 220, + "name": "The Fisher King", + "examine": "He doesn\u0027t look very well...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 221, + "name": "Black Knight Titan", + "examine": "He looks mean and powerful.", + "respawn": 10, + "combat": 120, + "hitpoints": 145, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 128, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 188, + "defenceMelee": 188, + "defenceRange": 188, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 222, + "name": "Monk", + "examine": "A holy man.", + "respawn": 10, + "combat": 5, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 223, + "name": "Brother Kojo", + "examine": "A peaceful monk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 224, + "name": "Dungeon rat", + "examine": "A dirty rat.", + "respawn": 10, + "combat": 12, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 225, + "name": "Bonzo", + "examine": "The Fishing Contest judge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 226, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 227, + "name": "Morris", + "examine": "He checks the entrants to the Fishing Contest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 228, + "name": "Big Dave", + "examine": "I can see how he got his name.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 229, + "name": "Joshua", + "examine": "He loves to fish!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 230, + "name": "Grandpa Jack", + "examine": "He looks elderly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 231, + "name": "Forester", + "examine": "He likes to cut down trees.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 232, + "name": "Austri", + "examine": "He looks short and grumpy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 233, + "name": "Fishing spot", + "examine": "I can fish here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 234, + "name": "Fishing spot", + "examine": "I can fish here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 235, + "name": "Fishing spot", + "examine": "I can fish here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 236, + "name": "Fishing spot", + "examine": "I can fish here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 237, + "name": "Renegade Knight", + "examine": "He isn\u0027t very friendly.", + "respawn": 10, + "combat": 37, + "hitpoints": 49, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 63, + "defenceMelee": 63, + "defenceRange": 63, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 238, + "name": "Thrantax the Mighty", + "examine": "A terrifying spirit.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 239, + "name": "Sir Lancelot", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 240, + "name": "Sir Gawain", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 241, + "name": "Sir Kay", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 242, + "name": "Sir Bedivere", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 243, + "name": "Sir Tristram", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 244, + "name": "Sir Pelleas", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 245, + "name": "Sir Lucan", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 246, + "name": "Sir Palomedes", + "examine": "Specialist meat transporter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 247, + "name": "Sir Mordred", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 39, + "hitpoints": 39, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 248, + "name": "Morgan Le Faye", + "examine": "An evil and powerful sorceress.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 249, + "name": "Merlin", + "examine": "A powerful Wizard of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 250, + "name": "The Lady of the Lake", + "examine": "A powerful sorceress who guards Excalibur.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 251, + "name": "King Arthur", + "examine": "Legendary King of the Britons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 252, + "name": "Beggar", + "examine": "He looks very hungry...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 253, + "name": "Khazard Guard", + "examine": "He\u0027s guarding the door.", + "respawn": 10, + "combat": 23, + "hitpoints": 25, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 254, + "name": "Khazard Guard", + "examine": "He\u0027s been guarding the tavern for a bit too long.", + "respawn": 10, + "combat": 23, + "hitpoints": 25, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 255, + "name": "Khazard Guard", + "examine": "His armour indicates he\u0027s a Khazard Guard.", + "respawn": 10, + "combat": 23, + "hitpoints": 25, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 256, + "name": "Khazard Guard", + "examine": "His armour indicates he\u0027s a Khazard Guard.", + "respawn": 10, + "combat": 23, + "hitpoints": 25, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 257, + "name": "Khazard Guard", + "examine": "He takes the slaves to the arena. He rarely takes them back.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 258, + "name": "General Khazard", + "examine": "She looks particularly wealthy.", + "respawn": 10, + "combat": 112, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 259, + "name": "Khazard barman", + "examine": "A tough-looking Khazard barman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 260, + "name": "Kelvin", + "examine": "A slave fighter. He looks mistreated and weak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 10, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 261, + "name": "Joe", + "examine": "A slave fighter. He looks mistreated and weak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 10, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 262, + "name": "Fightslave", + "examine": "A slave fighter. He looks mistreated and weak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 10, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 263, + "name": "Hengrad", + "examine": "He looks mistreated but he hasn\u0027t given up.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 10, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 264, + "name": "Lady Servil", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 265, + "name": "Jeremy Servil", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 10, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 266, + "name": "Jeremy Servil", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 267, + "name": "Justin Servil", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 268, + "name": "Local", + "examine": "A scruffy-looking chap.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 10, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 269, + "name": "Bouncer", + "examine": "Postie Pete\u0027s worst nightmare.", + "respawn": 10, + "combat": 137, + "hitpoints": 116, + "maxHit": 10, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 158, + "defenceAnim": 159, + "deathAnim": 161, + "attackBonus": 150, + "defenceMelee": 150, + "defenceRange": 150, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 270, + "name": "Khazard Ogre", + "examine": "Khazard\u0027s strongest ogre warrior.", + "respawn": 10, + "combat": 63, + "hitpoints": 10, + "maxHit": 10, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 271, + "name": "Khazard Scorpion", + "examine": "A large, angry scorpion.", + "respawn": 10, + "combat": 44, + "hitpoints": 29, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 246, + "defenceAnim": 247, + "deathAnim": 248, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 272, + "name": "Lucien", + "examine": "He walks with a slight limp.", + "respawn": 10, + "combat": 14, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 273, + "name": "Lucien", + "examine": "He walks with a slight limp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 274, + "name": "Guardian of Armadyl", + "examine": "A guard who has devoted their life to Armadyl.", + "respawn": 10, + "combat": 45, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 275, + "name": "Guardian of Armadyl", + "examine": "A guard who has devoted their life to Armadyl.", + "respawn": 10, + "combat": 43, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 276, + "name": "Winelda", + "examine": "A witch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 277, + "name": "Fire Warrior of Lesarkus", + "examine": "Intimidating!", + "respawn": 10, + "combat": 84, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 278, + "name": "Cook", + "examine": "The head cook of Lumbridge castle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 279, + "name": "Brother Omad", + "examine": "An old monk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 280, + "name": "Brother Cedric", + "examine": "An old drunk monk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 281, + "name": "Monk", + "examine": "An Ardougne Monk.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 282, + "name": "Thief", + "examine": "A dastardly blanket thief.", + "respawn": 10, + "combat": 14, + "hitpoints": 37, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 48, + "defenceMelee": 48, + "defenceRange": 48, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 283, + "name": "Head Thief", + "examine": "The head of the treacherous blanket stealing gang.", + "respawn": 10, + "combat": 26, + "hitpoints": 37, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 48, + "defenceMelee": 48, + "defenceRange": 48, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 284, + "name": "Doric", + "examine": "A dwarf smith. Quite handy with a hammer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 285, + "name": "Veronica", + "examine": "She doesn\u0027t look too happy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 286, + "name": "Professor Oddenstein", + "examine": "A mad scientist if ever I saw one!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 287, + "name": "Ernest", + "examine": "A former chicken.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 288, + "name": "Chicken", + "examine": "A strange chicken.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 289, + "name": "Councillor Halgrive", + "examine": "An official of Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 290, + "name": "Doctor Orbon", + "examine": "A serious-looking doctor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 291, + "name": "Farmer Brumty", + "examine": "A farmer who\u0027s seen happier times.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 292, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 293, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 294, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 295, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 296, + "name": "General Bentnoze", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 2, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 297, + "name": "General Wartface", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 2, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 298, + "name": "Goblin", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 299, + "name": "Goblin", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 300, + "name": "Sedridor", + "examine": "Chief of research at Wizards\u0027 Tower.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 301, + "name": "Twig", + "examine": "Reminds me of playing pooh sticks.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 302, + "name": "Hadley", + "examine": "Could do with losing a bit of weight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 303, + "name": "Gerald", + "examine": "Looks suspiciously like a fisherman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 304, + "name": "Almera", + "examine": "Nice hair.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 305, + "name": "Hudon", + "examine": "Looks young.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 306, + "name": "Golrie", + "examine": "It\u0027s a tree gnome", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 307, + "name": "Hetty", + "examine": "An old motherly witch with a curious smile and a hooked nose.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 308, + "name": "Master fisher", + "examine": "The man in charge of the fishing guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 309, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 310, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 311, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 312, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 313, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 314, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 315, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 316, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 317, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 318, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 319, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 320, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 321, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 322, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 323, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 324, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 325, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 326, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 327, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 328, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 329, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 330, + "name": "Fishing spot", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 331, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 332, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 333, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 334, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 335, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 336, + "name": "Da Vinci", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 337, + "name": "Da Vinci", + "examine": "He has a colourful personality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 338, + "name": "Chancy", + "examine": "He\u0027s ready for a bet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 339, + "name": "Chancy", + "examine": "He\u0027s ready for a bet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 340, + "name": "Hops", + "examine": "He\u0027s drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 341, + "name": "Hops", + "examine": "He\u0027s drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 342, + "name": "Guidor\u0027s wife", + "examine": "She looks rather concerned.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 343, + "name": "Guidor", + "examine": "He\u0027s not that ill.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 344, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 345, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 346, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 347, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 348, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 349, + "name": "Kilron", + "examine": "He looks shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 350, + "name": "Omart", + "examine": "A nervous looking fellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 351, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 4, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 352, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 3, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 353, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 4, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 354, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 3, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 355, + "name": "Child", + "examine": "A child of West Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 356, + "name": "Child", + "examine": "A child of West Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 357, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 18, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 358, + "name": "Priest", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 359, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 360, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 4, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 361, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 12, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 362, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 3, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 363, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 14, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 364, + "name": "King Lathas", + "examine": "King Lathas of East Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 365, + "name": "Paladin", + "examine": "A military man.", + "respawn": 10, + "combat": 59, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 366, + "name": "Jerico", + "examine": "He looks friendly enough.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 367, + "name": "Chemist", + "examine": "Smells very chemically...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 368, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 369, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 370, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 13, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 371, + "name": "Mourner", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 12, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 372, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 373, + "name": "Nurse Sarah", + "examine": "She\u0027s quite a looker!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 374, + "name": "Ogre", + "examine": "Ugly and bad-tempered.", + "respawn": 10, + "combat": 63, + "hitpoints": 60, + "maxHit": 8, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 375, + "name": "Redbeard Frank", + "examine": "A pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 376, + "name": "Captain Tobias", + "examine": "An old sea dog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 377, + "name": "Seaman Lorris", + "examine": "A young sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 378, + "name": "Seaman Thresnor", + "examine": "A young sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 379, + "name": "Luthas", + "examine": "The owner of the banana plantation.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 380, + "name": "Customs officer", + "examine": "Inspects people\u0027s packages.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 381, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 382, + "name": "Dwarf", + "examine": "A dwarf who looks after the mining guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 383, + "name": "Stankers", + "examine": "He\u0027s in control of the coal trucks.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 384, + "name": "Barbarian guard", + "examine": "Not very civilised looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 385, + "name": "Kharid Scorpion", + "examine": "Looks vicious!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 386, + "name": "Kharid Scorpion", + "examine": "Looks vicious!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 387, + "name": "Kharid Scorpion", + "examine": "Looks vicious!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 388, + "name": "Seer", + "examine": "Could do with a shave...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 389, + "name": "Thormac", + "examine": "Nice hat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 390, + "name": "Big fish", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 391, + "name": "River troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 14, + "hitpoints": 28, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 392, + "name": "River troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 29, + "hitpoints": 36, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 30, + "defenceMelee": 30, + "defenceRange": 30, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 393, + "name": "River troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 49, + "hitpoints": 57, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 50, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 394, + "name": "River troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 79, + "hitpoints": 90, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 395, + "name": "River troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 120, + "hitpoints": 130, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 120, + "defenceMelee": 120, + "defenceRange": 120, + "defenceMage": 120, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 396, + "name": "River troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 159, + "hitpoints": 160, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 160, + "defenceMelee": 160, + "defenceRange": 160, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 397, + "name": "Cow", + "examine": "Beefy.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 10, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 398, + "name": "Legends guard", + "examine": "A Legends Guild guard; he protects the entrance to the Legends Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 399, + "name": "Legends guard", + "examine": "A Legends Guild guard; he protects the entrance to the Legends Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 400, + "name": "Radimus Erkle", + "examine": "Radimus is the Grand Vizier of the Legends Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 401, + "name": "Jungle forester", + "examine": "He deals in exotic types of wood.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 402, + "name": "Jungle forester", + "examine": "She deals in exotic types of wood.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 403, + "name": "Fishing spot", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 404, + "name": "Fishing spot", + "examine": "Wow - the prettiest elf I have ever seen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 405, + "name": "Fishing spot", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 406, + "name": "Fishing spot", + "examine": "Either a very fremennikey pirate, or a very piratey fremennik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 407, + "name": "Strange plant", + "examine": "Parrot on shoulder... hook for a hand... yup, definitely a pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 408, + "name": "Strange plant", + "examine": "Parrot on shoulder... hook for a hand... yup, definitely a pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 409, + "name": "Genie", + "examine": "He\u0027s come to offer a wish!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 410, + "name": "Mysterious Old Man", + "examine": "A very strange old man...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 411, + "name": "Swarm", + "examine": "Insects buzzing around.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 412, + "name": "Bat", + "examine": "An annoying flappy thing.", + "respawn": 10, + "combat": 6, + "hitpoints": 8, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 30, + "defenceAnim": 31, + "deathAnim": 36, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 10, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 413, + "name": "Rock Golem", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 14, + "hitpoints": 28, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 414, + "name": "Rock Golem", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 29, + "hitpoints": 36, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 30, + "defenceMelee": 30, + "defenceRange": 30, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 415, + "name": "Rock Golem", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 49, + "hitpoints": 57, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 50, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 416, + "name": "Rock Golem", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 79, + "hitpoints": 90, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 417, + "name": "Rock Golem", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 120, + "hitpoints": 130, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 120, + "defenceMelee": 120, + "defenceRange": 120, + "defenceMage": 120, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 418, + "name": "Rock Golem", + "examine": "What\u0027s he doing here?", + "respawn": 10, + "combat": 159, + "hitpoints": 160, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 153, + "defenceAnim": 154, + "deathAnim": 156, + "attackBonus": 160, + "defenceMelee": 160, + "defenceRange": 160, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 419, + "name": "Zombie", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 14, + "hitpoints": 28, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 420, + "name": "Zombie", + "examine": "What\u0027s he doing here?", + "respawn": 10, + "combat": 29, + "hitpoints": 36, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 30, + "defenceMelee": 30, + "defenceRange": 30, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 421, + "name": "Zombie", + "examine": "The most senior goblin cleric.", + "respawn": 10, + "combat": 49, + "hitpoints": 57, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 50, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 422, + "name": "Zombie", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 79, + "hitpoints": 90, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 423, + "name": "Zombie", + "examine": "Captain of the Dorgesh-Kaan City Guard.", + "respawn": 10, + "combat": 120, + "hitpoints": 130, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 120, + "defenceMelee": 120, + "defenceRange": 120, + "defenceMage": 120, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 424, + "name": "Zombie", + "examine": "Captain of the Dorgesh-Kaan City Guard.", + "respawn": 10, + "combat": 159, + "hitpoints": 160, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 160, + "defenceMelee": 160, + "defenceRange": 160, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 425, + "name": "Shade", + "examine": "Captain of the Dorgesh-Kaan City Guard.", + "respawn": 10, + "combat": 14, + "hitpoints": 28, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 426, + "name": "Shade", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 29, + "hitpoints": 36, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 30, + "defenceMelee": 30, + "defenceRange": 30, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 427, + "name": "Shade", + "examine": "Captain of the Dorgesh-Kaan City Guard.", + "respawn": 10, + "combat": 49, + "hitpoints": 57, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 50, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 428, + "name": "Shade", + "examine": "It looks like the flare has blinded him.", + "respawn": 10, + "combat": 79, + "hitpoints": 90, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 429, + "name": "Shade", + "examine": "Captain of the Dorgesh-Kaan City Guard.", + "respawn": 10, + "combat": 120, + "hitpoints": 130, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 120, + "defenceMelee": 120, + "defenceRange": 120, + "defenceMage": 120, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 430, + "name": "Shade", + "examine": "Captain of the Dorgesh-Kaan City Guard.", + "respawn": 10, + "combat": 159, + "hitpoints": 160, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 160, + "defenceMelee": 160, + "defenceRange": 160, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 431, + "name": "Null", + "examine": "A pirate that can navigate better than a bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 4, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 432, + "name": "Cyrisus", + "examine": "He\u0027s a ranger - light and accurate.", + "respawn": 10, + "combat": 126, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 433, + "name": "Cyrisus", + "examine": "He\u0027s a meleer - prepared to go face-to-face.", + "respawn": 10, + "combat": 126, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 434, + "name": "Cyrisus", + "examine": "He\u0027s a mage - mystical and calculating.", + "respawn": 10, + "combat": 126, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 435, + "name": "Fallen Man", + "examine": "I hope he\u0027s not dead!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 436, + "name": "Fallen Man", + "examine": "He\u0027s alive... just.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 437, + "name": "Cap\u0027n Izzy No-Beard", + "examine": "Entrance clerk for the Brimhaven Agility Arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 438, + "name": "Tree spirit", + "examine": "Assistant teacher of the Dorgesh-Kaan nursery school.", + "respawn": 10, + "combat": 14, + "hitpoints": 28, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 439, + "name": "Tree spirit", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 29, + "hitpoints": 36, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 30, + "defenceMelee": 30, + "defenceRange": 30, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 440, + "name": "Tree spirit", + "examine": "Aww.", + "respawn": 10, + "combat": 49, + "hitpoints": 57, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 50, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 441, + "name": "Tree spirit", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 79, + "hitpoints": 90, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 442, + "name": "Tree spirit", + "examine": "Aww.", + "respawn": 10, + "combat": 120, + "hitpoints": 130, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 120, + "defenceMelee": 120, + "defenceRange": 120, + "defenceMage": 120, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 443, + "name": "Tree spirit", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 159, + "hitpoints": 160, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 94, + "defenceAnim": 95, + "deathAnim": 97, + "attackBonus": 160, + "defenceMelee": 160, + "defenceRange": 160, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 444, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 445, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 446, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 447, + "name": "Jail guard", + "examine": "I wonder who he\u0027s guarding?", + "respawn": 10, + "combat": 26, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 448, + "name": "Jail guard", + "examine": "I wonder who he\u0027s guarding?", + "respawn": 10, + "combat": 26, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 449, + "name": "Jail guard", + "examine": "I wonder who he\u0027s guarding?", + "respawn": 10, + "combat": 26, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 450, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 451, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 452, + "name": "Seth Groats", + "examine": "A large, well built farmer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 453, + "name": "Suit of armour", + "examine": "Aaargh, it\u0027s alive!", + "respawn": 10, + "combat": 19, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 454, + "name": "Sanfew", + "examine": "An old druid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 455, + "name": "Kaqemeex", + "examine": "A wise druid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 456, + "name": "Father Aereck", + "examine": "Looks a bit holy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 457, + "name": "Restless ghost", + "examine": "Eek! A ghost!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 458, + "name": "Father Urhney", + "examine": "Looks very holy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 459, + "name": "Skeleton", + "examine": "It rattles when it walks.", + "respawn": 10, + "combat": 13, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 460, + "name": "Wizard Frumscone", + "examine": "A Wizard of the Magic Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 461, + "name": "Magic Store owner", + "examine": "A Supplier of Magical items.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 462, + "name": "Wizard Distentor", + "examine": "Head of the Magic Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 463, + "name": "Murphy", + "examine": "Salty old sea dog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 464, + "name": "Murphy", + "examine": "Salty old sea dog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 465, + "name": "Murphy", + "examine": "Salty old sea dog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 466, + "name": "Murphy", + "examine": "Salty old sea dog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 467, + "name": "Shark", + "examine": "Let\u0027s not go skinny dipping eh?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 468, + "name": "Shark", + "examine": "Let\u0027s not go skinny dipping eh?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 469, + "name": "King Bolren", + "examine": "It\u0027s a gnome. He looks important.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 470, + "name": "Commander Montai", + "examine": "It\u0027s a tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 471, + "name": "Bolkoy", + "examine": "It\u0027s a tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 472, + "name": "Remsai", + "examine": "It\u0027s a tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 473, + "name": "Elkoy", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 474, + "name": "Elkoy", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 475, + "name": "Khazard trooper", + "examine": "It\u0027s one of General Khazard\u0027s warriors.", + "respawn": 10, + "combat": 19, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 476, + "name": "Khazard trooper", + "examine": "It\u0027s one of General Khazard\u0027s warriors.", + "respawn": 10, + "combat": 19, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 477, + "name": "Khazard warlord", + "examine": "He looks real nasty, smells bad too.", + "respawn": 10, + "combat": 112, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 478, + "name": "Khazard commander", + "examine": "It\u0027s one of General Khazard\u0027s commanders.", + "respawn": 10, + "combat": 48, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 479, + "name": "Gnome troop", + "examine": "It\u0027s a tree gnome trooper.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 480, + "name": "Gnome troop", + "examine": "It\u0027s a tree gnome trooper.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 481, + "name": "Tracker gnome 1", + "examine": "It\u0027s a gnome who specialises in covert operations.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 482, + "name": "Tracker gnome 2", + "examine": "It\u0027s a gnome who specialises in covert operations.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 483, + "name": "Tracker gnome 3", + "examine": "It\u0027s a gnome who specialises in covert operations.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 484, + "name": "Local Gnome", + "examine": "It\u0027s a young tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 485, + "name": "Local Gnome", + "examine": "It\u0027s a young tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 486, + "name": "Kalron", + "examine": "He looks lost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 487, + "name": "Observatory assistant", + "examine": "I guess he wants to be more than just the muscle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 488, + "name": "Observatory professor", + "examine": "A man, learned in the ways of the stars.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 489, + "name": "Goblin guard", + "examine": "He doesn\u0027t look like he\u0027d trust his own mother.", + "respawn": 10, + "combat": 42, + "hitpoints": 43, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 310, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 55, + "defenceMelee": 55, + "defenceRange": 55, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 490, + "name": "Observatory professor", + "examine": "If the mummy is at school, where are the kids?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 491, + "name": "Pissed Ghost", + "examine": "He doesn\u0027t look like he wants you here.", + "respawn": 10, + "combat": 90, + "hitpoints": 90, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 123, + "defenceAnim": 124, + "deathAnim": 126, + "attackBonus": 26, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 117, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 492, + "name": "Spirit of Scorpius", + "examine": "The essence of evil.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 493, + "name": "Grave scorpion", + "examine": "A vicious, little, stinging thing.", + "respawn": 10, + "combat": 12, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 494, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 495, + "name": "Banker", + "examine": "Good with money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 496, + "name": "Banker", + "examine": "A financial expert.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 497, + "name": "Banker", + "examine": "Looks after your money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 498, + "name": "Banker", + "examine": "Manages money momentarily.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 499, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 500, + "name": "Mosol Rei", + "examine": "A warrior from Shilo Village.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 501, + "name": "Spirit of Zadimus", + "examine": "An unquiet soul.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 502, + "name": "Undead one", + "examine": "A minion of Rashiliyia.", + "respawn": 10, + "combat": 68, + "hitpoints": 47, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 61, + "defenceMelee": 61, + "defenceRange": 61, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 503, + "name": "Undead one", + "examine": "A minion of Rashiliyia.", + "respawn": 10, + "combat": 61, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 504, + "name": "Undead one", + "examine": "The animated dead; one of Rashiliyia\u0027s minions.", + "respawn": 10, + "combat": 68, + "hitpoints": 47, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 61, + "defenceMelee": 61, + "defenceRange": 61, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 505, + "name": "Undead one", + "examine": "The animated dead; one of Rashiliyia\u0027s minions.", + "respawn": 10, + "combat": 73, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 506, + "name": "Rashiliyia", + "examine": "The animated spirit of Rashiliyia the Zombie Queen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 507, + "name": "Nazastarool", + "examine": "A giant zombie of huge strength and devastating power.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 299, + "defenceAnim": 300, + "deathAnim": 302, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 508, + "name": "Nazastarool", + "examine": "A giant skeleton of huge strength and devastating power.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 260, + "defenceAnim": 261, + "deathAnim": 263, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 509, + "name": "Nazastarool", + "examine": "A giant ghost of huge strength and devastating power.", + "respawn": 10, + "combat": 93, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 123, + "defenceAnim": 124, + "deathAnim": 126, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 510, + "name": "Hajedy", + "examine": "A cart driver; it looks like he\u0027s quite experienced.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 511, + "name": "Vigroy", + "examine": "A cart driver; it looks like he\u0027s quite experienced.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 512, + "name": "Kaleb Paramaya", + "examine": "This is Kaleb Paramaya, a warm and friendly inn owner.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 513, + "name": "Yohnus", + "examine": "This is Yohnus, he runs the local smithery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 514, + "name": "Seravel", + "examine": "This is Seravel, he sells tickets for the \u0027Lady of the Waves\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 515, + "name": "Yanni Salika", + "examine": "Yanni Salika; he buys and sells antiques.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 516, + "name": "Obli", + "examine": "An intelligent-looking shop owner.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 517, + "name": "Fernahei", + "examine": "This is Fernahei; he owns the local fishing tackle shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 518, + "name": "Captain Shanks", + "examine": "He\u0027s the Captain of the \u0027Lady of the Waves\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 519, + "name": "Bob", + "examine": "An expert on axes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 520, + "name": "Shop keeper", + "examine": "Sells stuff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 521, + "name": "Shop assistant", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 522, + "name": "Shop keeper", + "examine": "Likes people spending money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 523, + "name": "Shop assistant", + "examine": "Likes helping sell stuff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 524, + "name": "Shop keeper", + "examine": "A product of a consumerist society.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 525, + "name": "Shop assistant", + "examine": "Likes you more, the more you spend.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 526, + "name": "Shop keeper", + "examine": "A product of a consumerist society.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 527, + "name": "Shop assistant", + "examine": "Likes you more, the more you spend.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 528, + "name": "Shop keeper", + "examine": "If he doesn\u0027t have it, he can\u0027t sell it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 529, + "name": "Shop assistant", + "examine": "She\u0027s here on work experience.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 530, + "name": "Shop keeper", + "examine": "Has an interesting assortment of items for sale.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 531, + "name": "Shop assistant", + "examine": "Works on commission.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 532, + "name": "Shop keeper", + "examine": "Clearly takes pride in his appearance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 533, + "name": "Shop assistant", + "examine": "Needs a haircut.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 534, + "name": "Fairy shop keeper", + "examine": "Sells stuff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 535, + "name": "Fairy shop assistant", + "examine": "Sells stuff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 536, + "name": "Valaine", + "examine": "A champion saleswoman!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 537, + "name": "Scavvo", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 538, + "name": "Peksa", + "examine": "Always up-to-date with the latest helmet fashions.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 539, + "name": "Silk trader", + "examine": "Very snappily dressed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 540, + "name": "Gem trader", + "examine": "Makes his money selling rocks.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 541, + "name": "Zeke", + "examine": "Sells superior scimitars.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 542, + "name": "Louie Legs", + "examine": "For the finest in armoured legware.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 543, + "name": "Karim", + "examine": "Kebabs are full of meaty goodness.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 544, + "name": "Ranael", + "examine": "She\u0027s an expert on armoured skirts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 545, + "name": "Dommik", + "examine": "If Crafting\u0027s your thing, he\u0027s your man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 546, + "name": "Zaff", + "examine": "Sells superior staffs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 547, + "name": "Baraek", + "examine": "Animal skins are a speciality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 548, + "name": "Thessalia", + "examine": "Has an interesting assortment of clothes on offer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 549, + "name": "Horvik", + "examine": "The man with the armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 550, + "name": "Lowe", + "examine": "Sells arrows.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 551, + "name": "Shop keeper", + "examine": "Ironically, makes a living from swords.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 552, + "name": "Shop assistant", + "examine": "Helps the shopkeeper sell swords.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 553, + "name": "Aubury", + "examine": "Runes are his passion.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 554, + "name": "Fancy dress shop owner", + "examine": "For the interesting clothing items you just can\u0027t find elsewhere.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 555, + "name": "Shop keeper", + "examine": "Has a fine moustache.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 556, + "name": "Grum", + "examine": "Loves his gold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 557, + "name": "Wydin", + "examine": "Likes his food to be kept fresh.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 558, + "name": "Gerrant", + "examine": "A Fishing expert.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 559, + "name": "Brian", + "examine": "An axe expert.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 560, + "name": "Jiminua", + "examine": "Goods for sale and trade.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 561, + "name": "Shop keeper", + "examine": "Could stand to lose a few pounds.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 562, + "name": "Candle maker", + "examine": "Has an odd smell about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 563, + "name": "Arhein", + "examine": "He looks fairly well-to-do.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 564, + "name": "Jukat", + "examine": "A being from a mysterious other realm.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 565, + "name": "Lunderwin", + "examine": "Smells strangely of cabbage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 566, + "name": "Irksol", + "examine": "Is he invisible or just floating clothing?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 567, + "name": "Fairy", + "examine": "Looks strange and mysterious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 568, + "name": "Zambo", + "examine": "Appears slightly drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 569, + "name": "Silver merchant", + "examine": "Looks fairly well fed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 570, + "name": "Gem merchant", + "examine": "Seems very well-off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 571, + "name": "Baker", + "examine": "So where are the butcher and the candlestick-maker?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 572, + "name": "Spice seller", + "examine": "Has a very exotic aroma about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 573, + "name": "Fur trader", + "examine": "Knows how to keep warm in the winter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 574, + "name": "Silk merchant", + "examine": "Seems very well-off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 575, + "name": "Hickton", + "examine": "A master fletcher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 576, + "name": "Harry", + "examine": "There\u0027s something fishy about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 577, + "name": "Cassie", + "examine": "Nice eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 578, + "name": "Frincos", + "examine": "Kind of funny-looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 579, + "name": "Drogo dwarf", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 580, + "name": "Flynn", + "examine": "The mace salesman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 581, + "name": "Wayne", + "examine": "An armourer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 582, + "name": "Dwarf", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 583, + "name": "Betty", + "examine": "She seems like a nice sort of person.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 584, + "name": "Herquin", + "examine": "Seems very well-off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 585, + "name": "Rommik", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 586, + "name": "Gaius", + "examine": "Ironically, makes a living from swords.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 587, + "name": "Jatix", + "examine": "He runs the Herblore shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 588, + "name": "Davon", + "examine": "An amulet trader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 589, + "name": "Zenesha", + "examine": "Sells top quality platemail armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 590, + "name": "Aemad", + "examine": "He runs the adventurers\u0027 shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 591, + "name": "Kortan", + "examine": "He helps to run the adventurers\u0027 shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 592, + "name": "Roachey", + "examine": "He runs the Fishing Guild shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 593, + "name": "Frenita", + "examine": "A recipe for success- in Cooking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 594, + "name": "Nurmof", + "examine": "He runs a pickaxe store.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 595, + "name": "Tea seller", + "examine": "He seems to sell tea.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 596, + "name": "Fat Tony", + "examine": "A pizza expert; in both making and eating.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 597, + "name": "Noterazzo", + "examine": "The lawless shopkeeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 598, + "name": "Hairdresser", + "examine": "Anyone fancy a trim?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 599, + "name": "Make-over mage", + "examine": "Master of the mystical make-over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 600, + "name": "Hudo", + "examine": "It\u0027s another jolly tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 601, + "name": "Rometti", + "examine": "It\u0027s a well-dressed tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 602, + "name": "Gulluck", + "examine": "He sells weapons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 603, + "name": "Heckel Funch", + "examine": "It\u0027s another jolly tree gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 604, + "name": "Thurgo", + "examine": "Dwarvish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 605, + "name": "Sir Vyvin", + "examine": "An elderly White Knight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 606, + "name": "Squire", + "examine": "Indentured servant of a Knight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 607, + "name": "Gunnjorn", + "examine": "He maintains this agility course.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 608, + "name": "Sir Amik Varze", + "examine": "Leader of the White Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 609, + "name": "Fortress Guard", + "examine": "A generic evil henchman.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 610, + "name": "Black Knight Captain", + "examine": "One of the Black Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 611, + "name": "Witch", + "examine": "The Black Knights\u0027 resident witch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 612, + "name": "Greldo", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 613, + "name": "Digsite workman", + "examine": "This person is working on the site.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 614, + "name": "Doug Deeping", + "examine": "This person is working on the site.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 615, + "name": "Student", + "examine": "A student busy studying the digsite.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 616, + "name": "Student", + "examine": "A student busy studying the digsite.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 617, + "name": "Student", + "examine": "A student busy studying the digsite.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 618, + "name": "Examiner", + "examine": "Upon examining the examiner you examine it is indeed an examiner!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 619, + "name": "Archaeological expert", + "examine": "An expert on archaeology.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 620, + "name": "Panning guide", + "examine": "A specialist in panning for gold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 621, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 622, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 623, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 624, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 625, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 626, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 627, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 628, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 629, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 630, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 631, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 632, + "name": "Gnome baller", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 633, + "name": "Gnome winger", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 634, + "name": "Gnome winger", + "examine": "A professional gnome baller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 635, + "name": "Gnome ball referee", + "examine": "Keeps the game fair.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 636, + "name": "Cheerleader", + "examine": "Cheerleading is a real sport!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 637, + "name": "Juliet", + "examine": "A tearful damsel, maybe I can help her?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 638, + "name": "Apothecary", + "examine": "A dealer in potions.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 639, + "name": "Romeo", + "examine": "Rather dense and soppy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 640, + "name": "Father Lawrence", + "examine": "A religious man... And occasional drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 641, + "name": "Charlie the Tramp", + "examine": "Looks down on his luck.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 642, + "name": "Katrine", + "examine": "An empowered woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 643, + "name": "Weaponsmaster", + "examine": "Looks kind of obsessive...", + "respawn": 10, + "combat": 23, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 644, + "name": "Straven", + "examine": "Kind of funny looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 645, + "name": "Jonny the beard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 646, + "name": "Curator Haig Halen", + "examine": "Curator of the museum.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 647, + "name": "Null", + "examine": "Reldo the librarian.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 648, + "name": "King Roald", + "examine": "Varrock\u0027s resident monarch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 649, + "name": "Archer", + "examine": "She looks quite experienced.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 650, + "name": "Warrior", + "examine": "He looks big and dumb.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 651, + "name": "Illegal Monk", + "examine": "One of the illegal brethern of the monks.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 7, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 652, + "name": "Wizard", + "examine": "He looks kind of puny...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 7, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 653, + "name": "Fairy Queen", + "examine": "Looks otherworldy...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 654, + "name": "Shamus", + "examine": "A funny little man who lives in a tree.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 655, + "name": "Tree spirit", + "examine": "Guardian of the dramen tree.", + "respawn": 10000000, + "combat": 101, + "hitpoints": 101, + "maxHit": 30, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 5532, + "defenceAnim": 5533, + "deathAnim": 5534, + "attackBonus": 131, + "defenceMelee": 131, + "defenceRange": 131, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 656, + "name": "Cave monk", + "examine": "Unsurprisingly monk like.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 657, + "name": "Monk of Entrana", + "examine": "Holy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 658, + "name": "Monk of Entrana", + "examine": "Holy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 659, + "name": "Party Pete", + "examine": "He likes to paaaarty!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 660, + "name": "Knight", + "examine": "You\u0027d need a tin opener to get him out.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 661, + "name": "Megan", + "examine": "Pretty barmaid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 662, + "name": "Lucy", + "examine": "Pretty barmaid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 663, + "name": "Man", + "examine": "A well dressed nobleman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 664, + "name": "Dimintheis", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 665, + "name": "Boot", + "examine": "A short angry guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 666, + "name": "Caleb", + "examine": "A well dressed nobleman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 667, + "name": "Chronozon", + "examine": "Chronozon the blood demon.", + "respawn": 10, + "combat": 170, + "hitpoints": 60, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 668, + "name": "Johnathon", + "examine": "A well dressed nobleman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 669, + "name": "Hazelmere", + "examine": "An ancient looking gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 670, + "name": "King Narnode Shareen", + "examine": "An important looking gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 671, + "name": "Glough", + "examine": "A rough looking gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 672, + "name": "Anita", + "examine": "Glough\u0027s girlfriend.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 673, + "name": "Charlie", + "examine": "Poor guy, he looks frightened.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 674, + "name": "Foreman", + "examine": "The boss!", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 675, + "name": "Shipyard worker", + "examine": "Builds ships for a living.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 676, + "name": "Femi", + "examine": "A gnome trader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 677, + "name": "Black Demon", + "examine": "A big, scary, jet-black demon.", + "respawn": 10, + "combat": 172, + "hitpoints": 157, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 204, + "defenceMelee": 204, + "defenceRange": 204, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 678, + "name": "Guard", + "examine": "Keeps order in the ranging guild.", + "respawn": 10, + "combat": 37, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 679, + "name": "Ranging Guild Doorman", + "examine": "The keeper of the gates to the ranging guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 680, + "name": "Leatherworker", + "examine": "An expert leatherworker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 681, + "name": "Held vampyre juvinate", + "examine": "A juvinate vampyre, held in a powerful spell.", + "respawn": 10, + "combat": 59, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 682, + "name": "Armour salesman", + "examine": "Supplier of Rangers armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 683, + "name": "Bow and Arrow salesman", + "examine": "Supplier of Archery equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 684, + "name": "Tower Advisor", + "examine": "Tower keeper and competition judge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 685, + "name": "Tower Advisor", + "examine": "Tower keeper and competition judge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 686, + "name": "Tower Advisor", + "examine": "Tower keeper and competition judge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 687, + "name": "Tower Advisor", + "examine": "Tower keeper and competition judge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 688, + "name": "Tower Archer", + "examine": "Defender of the north tower.", + "respawn": 10, + "combat": 19, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 426, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 689, + "name": "Tower Archer", + "examine": "Defender of the east tower.", + "respawn": 10, + "combat": 34, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 426, + "defenceAnim": 1834, + "deathAnim": 2241, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 690, + "name": "Tower Archer", + "examine": "Defender of the south tower.", + "respawn": 10, + "combat": 49, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 691, + "name": "Tower Archer", + "examine": "Defender of the west tower.", + "respawn": 10, + "combat": 64, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 692, + "name": "Tribal Weapon Salesman", + "examine": "Supplier of authentic throwing weapons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 693, + "name": "Competition Judge", + "examine": "Overseer of the Archery competition.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 694, + "name": "Ticket Merchant", + "examine": "Sells equipment in exchange for archery tickets.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 695, + "name": "Bailey", + "examine": "He smells of fish...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 696, + "name": "Caroline", + "examine": "She looks very worried about something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 697, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 698, + "name": "Holgart", + "examine": "A very good sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 699, + "name": "Holgart", + "examine": "A very good sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 700, + "name": "Holgart", + "examine": "A very good sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 701, + "name": "Kent", + "examine": "He looks very tired and hungry.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 702, + "name": "Fisherman", + "examine": "He smells of salty fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 703, + "name": "Fisherman", + "examine": "He smells of salty fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 704, + "name": "Fisherman", + "examine": "He smells of salty fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 705, + "name": "Melee combat tutor", + "examine": "Harlan, ready to teach you swordplay.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 706, + "name": "Wizard Mizgog", + "examine": "An old wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 707, + "name": "Wizard Grayzag", + "examine": "Master of imps.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 708, + "name": "Imp", + "examine": "A cheeky little imp.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 169, + "defenceAnim": 170, + "deathAnim": 172, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 709, + "name": "Imp", + "examine": "A vicious little imp.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 169, + "defenceAnim": 170, + "deathAnim": 172, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 710, + "name": "Alrena", + "examine": "She looks concerned.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 711, + "name": "Bravek", + "examine": "The city warder of West Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 712, + "name": "Carla", + "examine": "She looks upset.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 713, + "name": "Clerk", + "examine": "A bureaucratic administrator.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 714, + "name": "Edmond", + "examine": "A local civilian.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 715, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 716, + "name": "Head mourner", + "examine": "In charge of people with silly outfits.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 717, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 718, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 719, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 720, + "name": "Recruiter", + "examine": "A member of the Ardougne Royal Army.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 721, + "name": "Ted Rehnison", + "examine": "The head of the Rehnison family.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 722, + "name": "Martha Rehnison", + "examine": "A fairly poor looking woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 723, + "name": "Billy Rehnison", + "examine": "The Rehnisons\u0027 eldest son.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 724, + "name": "Milli Rehnison", + "examine": "She doesn\u0027t seem very happy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 725, + "name": "Jethick", + "examine": "A cynical old man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 726, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 727, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 728, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 729, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 730, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 731, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 732, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 733, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 734, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 735, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 736, + "name": "Emily", + "examine": "Works in the Rising Sun.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 737, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 738, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 739, + "name": "Bartender", + "examine": "I could get a beer from him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 740, + "name": "Trufitus", + "examine": "A wise old witch doctor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 741, + "name": "Duke Horacio", + "examine": "Duke Horacio of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 742, + "name": "Elvarg", + "examine": "Roar! A dragon!", + "respawn": 30, + "combat": 83, + "hitpoints": 79, + "maxHit": 20, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 743, + "name": "Ned", + "examine": "An old sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 744, + "name": "Klarense", + "examine": "A young sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 745, + "name": "Wormbrain", + "examine": "A badly-behaved goblin.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 746, + "name": "Oracle", + "examine": "A mystical fount of knowledge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 747, + "name": "Oziach", + "examine": "A strange little man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 748, + "name": "Null", + "examine": "His job is to keep the ship in tip-top condition.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 749, + "name": "Null", + "examine": "He looks a tad upset.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 750, + "name": "Null", + "examine": "He looks a tad upset.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 751, + "name": "Null", + "examine": "He looks a tad upset.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 752, + "name": "Null", + "examine": "He looks a tad upset.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 753, + "name": "Melzar the Mad", + "examine": "He looks totally insane!", + "respawn": 10, + "combat": 43, + "hitpoints": 44, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 57, + "defenceMelee": 57, + "defenceRange": 57, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 754, + "name": "Null", + "examine": "Ascending to rest.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 755, + "name": "Morgan", + "examine": "He looks scared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 756, + "name": "Dr Harlow", + "examine": "A retired vampire hunter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 757, + "name": "Count Draynor", + "examine": "Stop looking and run!", + "respawn": 10, + "combat": 34, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 758, + "name": "Fred the Farmer", + "examine": "A well fed looking farmer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 759, + "name": "Gertrude\u0027s cat", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 760, + "name": "Kitten", + "examine": "They look lost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 761, + "name": "Kitten", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 762, + "name": "Kitten", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 763, + "name": "Kitten", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 764, + "name": "Kitten", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 765, + "name": "Kitten", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 766, + "name": "Kitten", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 767, + "name": "Crate", + "examine": "Can I hear kittens?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 768, + "name": "Cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 769, + "name": "Cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 770, + "name": "Cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 771, + "name": "Cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 772, + "name": "Cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 773, + "name": "Cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 774, + "name": "Overgrown cat", + "examine": "A friendly, not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 775, + "name": "Overgrown cat", + "examine": "A friendly, not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 776, + "name": "Overgrown cat", + "examine": "A friendly, not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 777, + "name": "Overgrown cat", + "examine": "A friendly, not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 778, + "name": "Overgrown cat", + "examine": "A friendly, not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 779, + "name": "Overgrown cat", + "examine": "A friendly, not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 780, + "name": "Gertrude", + "examine": "A busy housewife.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 781, + "name": "Shilop", + "examine": "One of Gertrude\u0027s sons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 782, + "name": "Philop", + "examine": "One of Gertrude\u0027s sons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 783, + "name": "Wilough", + "examine": "One of Gertrude\u0027s sons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 784, + "name": "Kanel", + "examine": "One of Gertrude\u0027s sons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 785, + "name": "Civilian", + "examine": "A citizen of Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 786, + "name": "Civilian", + "examine": "A citizen of Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 787, + "name": "Civilian", + "examine": "A citizen of Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 788, + "name": "Garv", + "examine": "A diligent guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 789, + "name": "Grubor", + "examine": "A rough looking thief.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 790, + "name": "Trobert", + "examine": "A gnome who\u0027s supposed to be cleaning up a mess.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 791, + "name": "Seth", + "examine": "Slightly fishy smelling.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 792, + "name": "Grip", + "examine": "Looks like he\u0027s been in the wars...", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 793, + "name": "Alfonse the waiter", + "examine": "Smartly dressed, and ready to deliver food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 794, + "name": "Charlie the cook", + "examine": "Distinctly cook-like.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 795, + "name": "Ice Queen", + "examine": "A cold hearted lady.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 796, + "name": "Achietties", + "examine": "Distinctly heroic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 797, + "name": "Helemos", + "examine": "A retired hero.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 798, + "name": "Velrak the explorer", + "examine": "He looks cold and hungry.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 799, + "name": "Pirate Guard", + "examine": "A morally ambiguous guard.", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 800, + "name": "Fishing spot", + "examine": "It looks like there might be eels swimming in the lava.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 801, + "name": "Abbot Langley", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 802, + "name": "Brother Jered", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 803, + "name": "Monk", + "examine": "A holy man.", + "respawn": 10, + "combat": 5, + "hitpoints": 15, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 804, + "name": "Tanner", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 805, + "name": "Master Crafter", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 806, + "name": "Donovan the Family Handyman", + "examine": "He looks very tired...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 807, + "name": "Pierre", + "examine": "His job doesn\u0027t look very fun...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 808, + "name": "Hobbes", + "examine": "He looks kind of stuck up...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 809, + "name": "Louisa", + "examine": "She looks like she enjoys her job.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 810, + "name": "Mary", + "examine": "She looks very nervous...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 811, + "name": "Stanford", + "examine": "He looks like he spends a lot of time outdoors.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 812, + "name": "Guard", + "examine": "An officer of the Law.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 813, + "name": "Gossip", + "examine": "One of those people who love to gossip!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 814, + "name": "Anna", + "examine": "She\u0027s dressed in a red top and green trousers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 815, + "name": "Bob", + "examine": "He\u0027s dressed all in red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 816, + "name": "Carol", + "examine": "She\u0027s wearing a blue top and red trousers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 817, + "name": "David", + "examine": "He\u0027s dressed all in green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 818, + "name": "Elizabeth", + "examine": "She\u0027s wearing a green top and blue trousers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 819, + "name": "Frank", + "examine": "He\u0027s dressed all in blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 820, + "name": "Poison Salesman", + "examine": "He sure likes to sell stuff!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 821, + "name": "Sinclair Guard dog", + "examine": "Big, noisy, and scary looking!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 822, + "name": "Ana", + "examine": "She looks like a tourist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 823, + "name": "Ana", + "examine": "Stuffed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 824, + "name": "Female slave", + "examine": "She looks like she\u0027s been down here a long time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 825, + "name": "Male slave", + "examine": "It looks like he\u0027s been here a long time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 826, + "name": "Escaping slave", + "examine": "He\u0027s making a break for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 827, + "name": "Rowdy slave", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 828, + "name": "Shanty Claws", + "examine": "A sea shanty-singing werewolf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 829, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 830, + "name": "Mercenary Captain", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 47, + "hitpoints": 68, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 88, + "defenceMelee": 88, + "defenceRange": 88, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 831, + "name": "Captain Siad", + "examine": "He\u0027s in control of the whole mining camp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 832, + "name": "Al Shabim", + "examine": "He\u0027s the leader of the Bedabin tribe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 833, + "name": "Bedabin Nomad", + "examine": "A bedabin nomad, they live in the harshest extremes in the desert.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 834, + "name": "Bedabin Nomad Guard", + "examine": "A bedabin nomad guard - it looks like he\u0027s protecting an area.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 835, + "name": "Irena", + "examine": "A resident of Al-Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 836, + "name": "Shantay", + "examine": "He\u0027s in control of the Shantay pass.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 837, + "name": "Shantay Guard", + "examine": "He patrols the Shantay Pass.", + "respawn": 10, + "combat": 22, + "hitpoints": 32, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 412, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 838, + "name": "Shantay Guard", + "examine": "He patrols the Shantay Pass.", + "respawn": 10, + "combat": 22, + "hitpoints": 32, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 412, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 839, + "name": "Desert Wolf", + "examine": "A vicious desert wolf.", + "respawn": 10, + "combat": 27, + "hitpoints": 34, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 44, + "defenceMelee": 44, + "defenceRange": 44, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 840, + "name": "Ugthanki", + "examine": "A vicious attacking camel.", + "respawn": 10, + "combat": 42, + "hitpoints": 45, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 841, + "name": "Mine cart driver", + "examine": "He looks busy attending to his cart.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 842, + "name": "Rowdy Guard", + "examine": "He looks a bit aggressive and rowdy.", + "respawn": 10, + "combat": 43, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 843, + "name": "RPDT employee", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 844, + "name": "Wizard Cromperty", + "examine": "Inefficient looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 845, + "name": "Horacio", + "examine": "Could do with losing a few pounds.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 846, + "name": "Kangai Mau", + "examine": "A happening kind of guy!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 847, + "name": "Head chef", + "examine": "Despite his name, rarely actually cooks heads.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 848, + "name": "Blurberry", + "examine": "He seems to run the cocktail bar.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 849, + "name": "Barman", + "examine": "He serves cocktails.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 850, + "name": "Aluft Gianne snr.", + "examine": "The famous tree gnome chef.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 851, + "name": "Gnome Waiter", + "examine": "He can serve you gnome food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 852, + "name": "Ogre chieftain", + "examine": "Tough-looking.", + "respawn": 10, + "combat": 81, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 853, + "name": "Og", + "examine": "A senior member of the ogre community.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 854, + "name": "Grew", + "examine": "Very probably an ogre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 855, + "name": "Toban", + "examine": "Ogre-ish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 856, + "name": "Gorad", + "examine": "Big, dumb and ugly.", + "respawn": 10, + "combat": 68, + "hitpoints": 81, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 105, + "defenceMelee": 105, + "defenceRange": 105, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 857, + "name": "Ogre guard", + "examine": "An ogre that guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 858, + "name": "Ogre guard", + "examine": "These ogres protect the city.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 859, + "name": "Ogre guard", + "examine": "An ogre that guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 860, + "name": "Ogre guard", + "examine": "An ogre that guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 861, + "name": "Ogre guard", + "examine": "An ogre that guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 862, + "name": "City guard", + "examine": "Tries to keep the peace.", + "respawn": 10, + "combat": 83, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 863, + "name": "Scared skavid", + "examine": "Frightened-looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 864, + "name": "Mad skavid", + "examine": "Looks mad.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 865, + "name": "Skavid", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 866, + "name": "Skavid", + "examine": "A skavid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 867, + "name": "Skavid", + "examine": "A skavid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 868, + "name": "Skavid", + "examine": "A skavid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 869, + "name": "Skavid", + "examine": "A skavid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 870, + "name": "Enclave guard", + "examine": "Big and ugly looking.", + "respawn": 10, + "combat": 83, + "hitpoints": 80, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 871, + "name": "Ogre shaman", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 359, + "defenceAnim": 360, + "deathAnim": 361, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 872, + "name": "Watchtower Wizard", + "examine": "The hat is a dead giveaway.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 873, + "name": "Ogre trader", + "examine": "Funnily enough, he doesn\u0027t actually buy or sell ogres.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 874, + "name": "Ogre merchant", + "examine": "Funnily enough, he doesn\u0027t actually buy or sell ogres.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 875, + "name": "Ogre trader", + "examine": "Funnily enough, he doesn\u0027t actually buy or sell ogres.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 876, + "name": "Ogre trader", + "examine": "Funnily enough, he doesn\u0027t actually buy or sell ogres.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 877, + "name": "Tower guard", + "examine": "Tries to keep the peace.", + "respawn": 10, + "combat": 28, + "hitpoints": 10, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 878, + "name": "Colonel Radick", + "examine": "A military man.", + "respawn": 10, + "combat": 38, + "hitpoints": 65, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 84, + "defenceMelee": 84, + "defenceRange": 84, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 879, + "name": "Delrith", + "examine": "A freshly summoned demon.", + "respawn": 10, + "combat": 27, + "hitpoints": 7, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 880, + "name": "Weakened Delrith", + "examine": "The demon doesn\u0027t look so strong now.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 881, + "name": "Traiborn", + "examine": "An old wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 882, + "name": "Gypsy Aris", + "examine": "An old gypsy lady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 883, + "name": "Sir Prysin", + "examine": "One of the king\u0027s knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 884, + "name": "Captain Rovin", + "examine": "The head of the palace guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 885, + "name": "Ceril Carnillean", + "examine": "Head of the Carnillean household.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 886, + "name": "Claus the chef", + "examine": "The Carnillean family chef.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 887, + "name": "Guard", + "examine": "On special duty to protect the Carnilleans.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 888, + "name": "Philipe Carnillean", + "examine": "The newest member of the Carnillean family.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 889, + "name": "Henryeta Carnillean", + "examine": "Ceril Carnillean\u0027s wife.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 890, + "name": "Butler Jones", + "examine": "The Carnillean family butler.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 891, + "name": "Alomone", + "examine": "Leader of the Hazeel cult.", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 892, + "name": "Hazeel", + "examine": "An evil being raised from the dead.", + "respawn": 10, + "combat": 296, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 893, + "name": "Clivet", + "examine": "A member of the Hazeel cult.", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 894, + "name": "Hazeel Cultist", + "examine": "A member of the Hazeel cult.", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 895, + "name": "Boy", + "examine": "A sad-looking child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 896, + "name": "Nora T. Hagg", + "examine": "Distinctly witch-like.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 897, + "name": "Witch\u0027s experiment", + "examine": "Looks unnatural.", + "respawn": 10, + "combat": 19, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 255, + "defenceAnim": 256, + "deathAnim": 258, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 898, + "name": "Witch\u0027s experiment (second form)", + "examine": "Looks unnatural.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 899, + "name": "Witch\u0027s experiment (third form)", + "examine": "Looks unnatural.", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 900, + "name": "Witch\u0027s experiment (fourth form)", + "examine": "Looks unnatural.", + "respawn": 10, + "combat": 53, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 901, + "name": "Mouse", + "examine": "Deceptively mouse-shaped.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 902, + "name": "Gundai", + "examine": "He must get lonely out here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 903, + "name": "Lundail", + "examine": "He sells rune stones.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 904, + "name": "Chamber guardian", + "examine": "He hasn\u0027t seen much sun lately.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 905, + "name": "Kolodion", + "examine": "He runs the mage arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 906, + "name": "Kolodion", + "examine": "He runs the mage arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 907, + "name": "Kolodion", + "examine": "He runs the mage arena.", + "respawn": 10, + "combat": 10, + "hitpoints": 3, + "maxHit": 20, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 811, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 20, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 40, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 908, + "name": "Kolodion", + "examine": "He\u0027s a shape-shifter.", + "respawn": 10, + "combat": 40, + "hitpoints": 66, + "maxHit": 20, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 132, + "defenceAnim": 129, + "deathAnim": 131, + "attackBonus": 40, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 909, + "name": "Kolodion", + "examine": "He\u0027s a shape-shifter.", + "respawn": 10, + "combat": 60, + "hitpoints": 79, + "maxHit": 20, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 144, + "deathAnim": 146, + "attackBonus": 80, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 910, + "name": "Kolodion", + "examine": "He\u0027s a shape-shifter.", + "respawn": 10, + "combat": 80, + "hitpoints": 79, + "maxHit": 20, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 811, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 100, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 200, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 911, + "name": "Kolodion", + "examine": "He\u0027s a shape-shifter.", + "respawn": 10, + "combat": 112, + "hitpoints": 117, + "maxHit": 20, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 150, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 250, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 912, + "name": "Battle mage", + "examine": "He kills in the name of Zamorak.", + "respawn": 10, + "combat": 54, + "hitpoints": 127, + "maxHit": 20, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 811, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 165, + "defenceMelee": 165, + "defenceRange": 165, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 913, + "name": "Battle mage", + "examine": "He kills in the name of Saradomin.", + "respawn": 10, + "combat": 54, + "hitpoints": 127, + "maxHit": 20, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 811, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 165, + "defenceMelee": 165, + "defenceRange": 165, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 914, + "name": "Battle mage", + "examine": "He kills in the name of Guthix.", + "respawn": 10, + "combat": 54, + "hitpoints": 127, + "maxHit": 20, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 198, + "defenceAnim": 193, + "deathAnim": 196, + "attackBonus": 165, + "defenceMelee": 165, + "defenceRange": 165, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 915, + "name": "Leela", + "examine": "She comes from Al-Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 916, + "name": "Joe", + "examine": "Lady Keli\u0027s head guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 917, + "name": "Jail guard", + "examine": "I wonder who he\u0027s guarding?", + "respawn": 10, + "combat": 26, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 918, + "name": "Ned", + "examine": "An old sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 919, + "name": "Lady Keli", + "examine": "An infamous bandit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 920, + "name": "Prince Ali", + "examine": "A young prince.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 921, + "name": "Prince Ali", + "examine": "Now that\u0027s an effective disguise!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 922, + "name": "Aggie", + "examine": "A witch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 923, + "name": "Hassan", + "examine": "The chancellor to the Emir.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 924, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 925, + "name": "Border Guard", + "examine": "Guards the border.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 926, + "name": "Border Guard", + "examine": "Guards the border.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 927, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 928, + "name": "Gujuo", + "examine": "A dark, charismatic jungle native.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 929, + "name": "Ungadulu", + "examine": "The Kharazi tribe\u0027s elusive shaman.", + "respawn": 10, + "combat": 70, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 930, + "name": "Ungadulu", + "examine": "The Kharazi tribe\u0027s elusive shaman; something doesn\u0027t look quite right with him.", + "respawn": 10, + "combat": 169, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 931, + "name": "Jungle savage", + "examine": "An aggressive native of the Kharazi Jungle.", + "respawn": 10, + "combat": 90, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 932, + "name": "Fionella", + "examine": "She sells general items at the Legends Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 933, + "name": "Siegfried Erkle", + "examine": "An eccentric shopkeeper, related to the Grand Vizier of the Legends Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 934, + "name": "Nezikchened", + "examine": "An ancient, powerful demon of the underworld.", + "respawn": 10, + "combat": 187, + "hitpoints": 150, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 195, + "defenceMelee": 195, + "defenceRange": 195, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 935, + "name": "Viyeldi", + "examine": "The spirit of a long-dead wizard.", + "respawn": 10, + "combat": 79, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 936, + "name": "San Tojalon", + "examine": "The spirit of a long-dead warrior.", + "respawn": 10, + "combat": 106, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 265, + "defenceAnim": 266, + "deathAnim": 268, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 937, + "name": "Irvig Senay", + "examine": "The spirit of a long-dead warrior.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 265, + "defenceAnim": 266, + "deathAnim": 268, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 938, + "name": "Ranalph Devere", + "examine": "The spirit of a long-dead warrior.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 265, + "defenceAnim": 266, + "deathAnim": 268, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 939, + "name": "Boulder", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 940, + "name": "Echned Zekin", + "examine": "A spirit of the underworld.", + "respawn": 10, + "combat": 187, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 123, + "defenceAnim": 124, + "deathAnim": 126, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 941, + "name": "Green dragon", + "examine": "Must be related to Elvarg.", + "respawn": 30, + "combat": 79, + "hitpoints": 75, + "maxHit": 25, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 91, + "defenceAnim": 89, + "deathAnim": 92, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 942, + "name": "Master Chef", + "examine": "An expert on all things culinary.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 943, + "name": "Survival Expert", + "examine": "Very much an outdoors type.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 944, + "name": "Combat Instructor", + "examine": "An expert on all forms of combat.", + "respawn": 10, + "combat": 146, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 945, + "name": "Wildy Guide", + "examine": "Your introduction to the world of Wildy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 946, + "name": "Magic Instructor", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 947, + "name": "Financial Advisor", + "examine": "An official representative from the First National Bank of Wildy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 948, + "name": "Mining Instructor", + "examine": "An expert on Mining-related skills.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 949, + "name": "Quest Guide", + "examine": "Your introduction to the world of Wildy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 950, + "name": "Giant rat", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 951, + "name": "Chicken", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 952, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 953, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 954, + "name": "Brother Brace", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 955, + "name": "Cow", + "examine": "A cow by any other name would smell as sweet.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 956, + "name": "Drunken Dwarf", + "examine": "He\u0027s had a fair bit to drink...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 957, + "name": "Mubariz", + "examine": "Tough-looking combat type.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 958, + "name": "Fadli", + "examine": "Looks kinda bored.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 959, + "name": "A\u0027abla", + "examine": "Trained to deal with all sorts of injuries.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 960, + "name": "Sabreen", + "examine": "Heals people.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 961, + "name": "Surgeon General Tafani", + "examine": "This doctor really knows her stuff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 962, + "name": "Jaraah", + "examine": "Has the messy job of putting players back together again.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 963, + "name": "Zahwa", + "examine": "Battle-scarred.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 964, + "name": "Ima", + "examine": "A citizen of Al Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 965, + "name": "Sabeil", + "examine": "A citizen of Al Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 966, + "name": "Jadid", + "examine": "A citizen of Al Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 967, + "name": "Dalal", + "examine": "A citizen of Al Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 968, + "name": "Afrah", + "examine": "A citizen of Al Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 969, + "name": "Jeed", + "examine": "A citizen of Al Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 970, + "name": "Diango", + "examine": "He smells funny.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 971, + "name": "Chadwell", + "examine": "Shopkeeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 972, + "name": "Koftik", + "examine": "The cave guide.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 973, + "name": "Koftik", + "examine": "The cave guide.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 974, + "name": "Koftik", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 975, + "name": "Koftik", + "examine": "The cave guide.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 976, + "name": "Koftik", + "examine": "The cave guide.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 977, + "name": "Blessed spider", + "examine": "It\u0027s one of Iban\u0027s pets.", + "respawn": 10, + "combat": 39, + "hitpoints": 32, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 978, + "name": "Blessed giant rat", + "examine": "It\u0027s one of Iban\u0027s pet vermin.", + "respawn": 10, + "combat": 9, + "hitpoints": 30, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 0, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 979, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 980, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 981, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 982, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 983, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 984, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 985, + "name": "Slave", + "examine": "A wretched slave of Iban.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 986, + "name": "Boulder", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 987, + "name": "Unicorn", + "examine": "The animal is caged here.", + "respawn": 10, + "combat": 15, + "hitpoints": 19, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 289, + "defenceAnim": 290, + "deathAnim": 292, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 988, + "name": "Sir Jerro", + "examine": "A mighty-looking warrior.", + "respawn": 10, + "combat": 62, + "hitpoints": 58, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 75, + "defenceMelee": 75, + "defenceRange": 75, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 989, + "name": "Sir Carl", + "examine": "A mighty-looking warrior.", + "respawn": 10, + "combat": 62, + "hitpoints": 57, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 74, + "defenceMelee": 74, + "defenceRange": 74, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 990, + "name": "Sir Harry", + "examine": "A mighty-looking warrior.", + "respawn": 10, + "combat": 62, + "hitpoints": 57, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 74, + "defenceMelee": 74, + "defenceRange": 74, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 991, + "name": "Half-soulless", + "examine": "A creature empty of emotion.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 992, + "name": "Kardia", + "examine": "A dark and evil crone.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 993, + "name": "Witch\u0027s cat", + "examine": "Curiosity is yet to kill this one...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 994, + "name": "Niloof", + "examine": "A strong and hardy dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 995, + "name": "Klank", + "examine": "A dwarven maker of gauntlets.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 996, + "name": "Kamen", + "examine": "This dwarf looks intoxicated.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 997, + "name": "Kalrag", + "examine": "A giant spider.", + "respawn": 10, + "combat": 89, + "hitpoints": 79, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 998, + "name": "Othainian", + "examine": "One of the guardians of Iban.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 999, + "name": "Doomion", + "examine": "One of the guardians of Iban.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1000, + "name": "Holthion", + "examine": "One of the guardians of Iban.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 64, + "defenceAnim": 65, + "deathAnim": 67, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1001, + "name": "Dark mage", + "examine": "A user of dark magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1002, + "name": "Disciple of Iban", + "examine": "A dark magic user.", + "respawn": 10, + "combat": 13, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1003, + "name": "Lord Iban", + "examine": "The great and dreadful Lord Iban", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1004, + "name": "Spider", + "examine": "Incey wincey.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1005, + "name": "Giant bat", + "examine": "Annoying, flappy thing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1006, + "name": "Sea slug", + "examine": "A rather nasty looking crustacean.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1007, + "name": "Zamorak wizard", + "examine": "A servant of Zamorak.", + "respawn": 10, + "combat": 65, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1008, + "name": "Hamid", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1009, + "name": "Poison spider", + "examine": "A nasty, poisonous arachnid.", + "respawn": 10, + "combat": 31, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 143, + "defenceAnim": 147, + "deathAnim": 146, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1010, + "name": "Rantz", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1011, + "name": "Fycie", + "examine": "This must be Rantz\u0027s daughter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1012, + "name": "Bugs", + "examine": "This must be Rantz\u0027s son.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1013, + "name": "Swamp toad", + "examine": "A green skinned croaker, loves the swamp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1014, + "name": "Bloated Toad", + "examine": "A green skinned croaker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1015, + "name": "Chompy bird", + "examine": "Useful for hitting rocks.", + "respawn": 10, + "combat": 6, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1011, + "defenceAnim": 1012, + "deathAnim": 1009, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1016, + "name": "Chompy bird", + "examine": "A once boisterous bird, closer to being an ogre delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1017, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 5387, + "defenceAnim": 5388, + "deathAnim": 5389, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1018, + "name": "Rooster", + "examine": "He rules the, er, roost.", + "respawn": 10, + "combat": 3, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1019, + "name": "Fire elemental", + "examine": "A fire elemental.", + "respawn": 10, + "combat": 35, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1029, + "defenceAnim": 1030, + "deathAnim": 1031, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1020, + "name": "Earth elemental", + "examine": "An earth elemental.", + "respawn": 10, + "combat": 35, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1035, + "defenceAnim": 1036, + "deathAnim": 1037, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1021, + "name": "Air elemental", + "examine": "An air elemental.", + "respawn": 10, + "combat": 34, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1040, + "defenceAnim": 1042, + "deathAnim": 1041, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1022, + "name": "Water elemental", + "examine": "A water elemental.", + "respawn": 10, + "combat": 34, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1044, + "defenceAnim": 1046, + "deathAnim": 1048, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1023, + "name": "Vampire", + "examine": "Where did that come from?", + "respawn": 10, + "combat": 72, + "hitpoints": 56, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1035, + "defenceAnim": 1036, + "deathAnim": 1037, + "attackBonus": 72, + "defenceMelee": 72, + "defenceRange": 72, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1024, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1025, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1026, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1027, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1028, + "name": "Baby impling", + "examine": "An impling baby. Aaah...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1029, + "name": "Young impling", + "examine": "A young impling. It\u0027s not fair!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1030, + "name": "Gourmet impling", + "examine": "An impling gourmet. Mmmm, tasty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1031, + "name": "Earth impling", + "examine": "An earth impling. Rock on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1032, + "name": "Essence impling", + "examine": "An impling who likes magic. Magic!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1033, + "name": "Eclectic impling", + "examine": "An impling with varied tastes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1034, + "name": "Nature impling", + "examine": "A nature impling. Right on, maaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1035, + "name": "Magpie impling", + "examine": "Ooh, shiny things!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1036, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1037, + "name": "Prissy Scilla", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1038, + "name": "Rufus", + "examine": "There\u0027s something strange about him...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1039, + "name": "Barker", + "examine": "Has a distinguished air about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1040, + "name": "Fidelio", + "examine": "A lycanthrope shopkeeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1041, + "name": "Sbott", + "examine": "Has a faint smell of chemicals about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1042, + "name": "Roavar", + "examine": "Seems a jolly chap.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1043, + "name": "Will o\u0027 the wisp", + "examine": "Mysterious swamp lights...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1044, + "name": "Monk of Zamorak", + "examine": "An evil human cleric.", + "respawn": 10, + "combat": 22, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1045, + "name": "Monk of Zamorak", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 17, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1046, + "name": "Monk of Zamorak", + "examine": "An evil human cleric.", + "respawn": 10, + "combat": 30, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1047, + "name": "Temple guardian", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 30, + "hitpoints": 30, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 18, + "defenceAnim": 19, + "deathAnim": 20, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1048, + "name": "Drezel", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1049, + "name": "Drezel", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1050, + "name": "Filliman Tarlock", + "examine": "The animated spirit of a soul not at rest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1051, + "name": "Nature Spirit", + "examine": "A spirit of Nature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1052, + "name": "Ghast", + "examine": "Arrghhh... A Ghast.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1053, + "name": "Ghast", + "examine": "Arrghhh... A Ghast.", + "respawn": 10, + "combat": 30, + "hitpoints": 45, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1087, + "defenceAnim": 1088, + "deathAnim": 1089, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1054, + "name": "Ulizius", + "examine": "A slightly nervous guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1055, + "name": "Pirate Jackie the Fruit", + "examine": "Ticket trader for the Brimhaven Agility Arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1056, + "name": "Mime", + "examine": "A mute performer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1057, + "name": "Strange watcher", + "examine": "A member of the audience.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1058, + "name": "Strange watcher", + "examine": "A member of the audience.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1059, + "name": "Strange watcher", + "examine": "A member of the audience.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1060, + "name": "Denulth", + "examine": "Commander of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1061, + "name": "Sergeant", + "examine": "A sergeant of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1062, + "name": "Sergeant", + "examine": "A sergeant of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1063, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1064, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1065, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1066, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1067, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1068, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1069, + "name": "Soldier", + "examine": "A soldier of the Imperial Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1070, + "name": "Saba", + "examine": "A dishevelled and irritable hermit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1071, + "name": "Tenzing", + "examine": "An experienced sherpa.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1072, + "name": "Eadburg", + "examine": "The Burthorpe Castle cook.", + "respawn": 10, + "combat": 4, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1073, + "name": "Archer", + "examine": "A Burthorpe Castle archer.", + "respawn": 10, + "combat": 42, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1074, + "name": "Archer", + "examine": "A Burthorpe Castle archer.", + "respawn": 10, + "combat": 42, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1075, + "name": "Archer", + "examine": "A Burthorpe Castle archer.", + "respawn": 10, + "combat": 42, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1076, + "name": "Guard", + "examine": "A Burthorpe Castle guard.", + "respawn": 10, + "combat": 37, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1077, + "name": "Guard", + "examine": "A Burthorpe Castle guard.", + "respawn": 10, + "combat": 37, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1078, + "name": "Harold", + "examine": "An off-duty Burthorpe Castle guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1079, + "name": "Tostig", + "examine": "Barman of the Toad and Chicken.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1080, + "name": "Eohric", + "examine": "Head servant for Prince Anlaf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1081, + "name": "Servant", + "examine": "A servant for Prince Anlaf.", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1082, + "name": "Dunstan", + "examine": "Smithy for Burthorpe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1083, + "name": "Wistan", + "examine": "Shopkeeper for Burthorpe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1084, + "name": "Breoca", + "examine": "A citizen of Burthorpe.", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1085, + "name": "Ocga", + "examine": "A citizen of Burthorpe.", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1086, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1087, + "name": "Penda", + "examine": "A citizen of Burthorpe.", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1088, + "name": "Hygd", + "examine": "A citizen of Burthorpe.", + "respawn": 10, + "combat": 4, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1089, + "name": "Ceolburg", + "examine": "A citizen of Burthorpe.", + "respawn": 10, + "combat": 4, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1090, + "name": "Hild", + "examine": "A pretty young woman with an air of mystery around her.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1091, + "name": "Bob", + "examine": "The Jagex cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1092, + "name": "White Knight", + "examine": "The knight seems to be watching something.", + "respawn": 10, + "combat": 36, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1093, + "name": "Billy", + "examine": "Billy is a baa-a-a-d goat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1094, + "name": "Mountain goat", + "examine": "This beast doesn\u0027t need climbing boots.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1095, + "name": "Rock", + "examine": "The biggest and baddest troll.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1142, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1096, + "name": "Stick", + "examine": "A big, bad troll.", + "respawn": 10, + "combat": 104, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1097, + "name": "Pee Hat", + "examine": "A nasty looking troll.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1098, + "name": "Kraka", + "examine": "A nasty looking troll.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1099, + "name": "Dung", + "examine": "Human is his speciality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1100, + "name": "Ash", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1101, + "name": "Thrower Troll", + "examine": "Small for a troll but mean, ugly and throws rocks.", + "respawn": 10, + "combat": 67, + "hitpoints": 96, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 124, + "defenceMelee": 124, + "defenceRange": 124, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1102, + "name": "Thrower Troll", + "examine": "Small for a troll but mean, ugly and throws rocks.", + "respawn": 10, + "combat": 67, + "hitpoints": 96, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 124, + "defenceMelee": 124, + "defenceRange": 124, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1103, + "name": "Thrower Troll", + "examine": "Small for a troll but mean, ugly and throws rocks.", + "respawn": 10, + "combat": 67, + "hitpoints": 96, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 124, + "defenceMelee": 124, + "defenceRange": 124, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1104, + "name": "Thrower Troll", + "examine": "Small for a troll but mean, ugly and throws rocks.", + "respawn": 10, + "combat": 67, + "hitpoints": 96, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 124, + "defenceMelee": 124, + "defenceRange": 124, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1105, + "name": "Thrower Troll", + "examine": "Small for a troll but mean, ugly and throws rocks.", + "respawn": 10, + "combat": 67, + "hitpoints": 96, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 124, + "defenceMelee": 124, + "defenceRange": 124, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1106, + "name": "Mountain troll", + "examine": "Small for a troll but mean and ugly.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1107, + "name": "Mountain troll", + "examine": "Small for a troll but mean and ugly.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1108, + "name": "Mountain troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1109, + "name": "Mountain troll", + "examine": "Small for a troll but mean and ugly.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1110, + "name": "Mountain troll", + "examine": "Small for a troll but mean and ugly.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1111, + "name": "Mountain troll", + "examine": "Small for a troll but mean and ugly.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1112, + "name": "Mountain troll", + "examine": "Small for a troll but mean and ugly.", + "respawn": 10, + "combat": 69, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1113, + "name": "Eadgar", + "examine": "A rather mad-looking hermit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1114, + "name": "Godric", + "examine": "Dunstan\u0027s son.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1115, + "name": "Troll general", + "examine": "One of the troll generals.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1142, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1116, + "name": "Troll general", + "examine": "One of the troll generals.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1117, + "name": "Troll general", + "examine": "One of the troll generals.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1118, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1119, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1120, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1121, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1122, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1123, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1124, + "name": "Troll spectator", + "examine": "He\u0027s watching the arena.", + "respawn": 10, + "combat": 71, + "hitpoints": 90, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1125, + "name": "Dad", + "examine": "An unusually large troll.", + "respawn": 10, + "combat": 101, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1126, + "name": "Twig", + "examine": "He\u0027s guarding the cells.", + "respawn": 10, + "combat": 71, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1127, + "name": "Berry", + "examine": "He\u0027s guarding the cells.", + "respawn": 10, + "combat": 71, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1128, + "name": "Twig", + "examine": "He\u0027s guarding the cells.", + "respawn": 10, + "combat": 71, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1129, + "name": "Berry", + "examine": "He\u0027s guarding the cells.", + "respawn": 10, + "combat": 71, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1130, + "name": "Thrower troll", + "examine": "Small for a troll, but it\u0027s mean, ugly and throws rocks.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1131, + "name": "Thrower troll", + "examine": "Small for a troll, but it\u0027s mean, ugly and throws rocks.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1132, + "name": "Thrower troll", + "examine": "Small for a troll, but it\u0027s mean, ugly and throws rocks.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1133, + "name": "Thrower troll", + "examine": "Small for a troll, but it\u0027s mean, ugly and throws rocks.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1134, + "name": "Thrower troll", + "examine": "Small for a troll, but it\u0027s mean, ugly and throws rocks.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1135, + "name": "Cook", + "examine": "Human is his speciality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1136, + "name": "Cook", + "examine": "Human is his speciality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1137, + "name": "Cook", + "examine": "Human is his speciality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1138, + "name": "Mountain troll", + "examine": "Small for a troll, but mean and ugly.", + "respawn": 10, + "combat": 71, + "hitpoints": 92, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 284, + "defenceAnim": 285, + "deathAnim": 287, + "attackBonus": 119, + "defenceMelee": 119, + "defenceRange": 119, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1139, + "name": "Mushroom", + "examine": "He\u0027s fast asleep.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1140, + "name": "Mountain goat", + "examine": "This beast doesn\u0027t need climbing boots.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1141, + "name": "Mountain goat", + "examine": "This beast doesn\u0027t need climbing boots.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1142, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1143, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1144, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1145, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1146, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1147, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1148, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1149, + "name": "Guard", + "examine": "He\u0027s guarding the storeroom.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1150, + "name": "Guard", + "examine": "He\u0027s guarding the goutweed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1151, + "name": "Burntmeat", + "examine": "Human is his speciality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1152, + "name": "Weird Old Man", + "examine": "What\u0027s he mumbling about?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1153, + "name": "Kalphite Worker", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 28, + "hitpoints": 40, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1184, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 52, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1154, + "name": "Kalphite Soldier", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 85, + "hitpoints": 90, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1184, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 117, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1155, + "name": "Kalphite Guardian", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 141, + "hitpoints": 170, + "maxHit": 12, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 1184, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 221, + "defenceMelee": 221, + "defenceRange": 221, + "defenceMage": 221, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1156, + "name": "Kalphite Worker", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 28, + "hitpoints": 40, + "maxHit": 3, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1184, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 52, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1157, + "name": "Kalphite Guardian", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 141, + "hitpoints": 170, + "maxHit": 12, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 1184, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 221, + "defenceMelee": 221, + "defenceRange": 221, + "defenceMage": 221, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1158, + "name": "Kalphite Queen", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 333, + "hitpoints": 255, + "maxHit": 31, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 1184, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 331, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1159, + "name": "Kalphite Queen", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 333, + "hitpoints": 255, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 1185, + "defenceAnim": 1186, + "deathAnim": 1187, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 331, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1160, + "name": "Kalphite Queen", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 333, + "hitpoints": 255, + "maxHit": 31, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 1177, + "defenceAnim": 1179, + "deathAnim": 1182, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 331, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1161, + "name": "Kalphite Larva", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1162, + "name": "Timfraku", + "examine": "The imposing Chief of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1163, + "name": "Tiadeche", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1164, + "name": "Tiadeche", + "examine": "A rather depressed looking fisherman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1165, + "name": "Tinsay", + "examine": "A more than slightly eccentric looking priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1166, + "name": "Tinsay", + "examine": "A more than slightly eccentric looking priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1167, + "name": "Tamayu", + "examine": "A hunter who long ago succumbed to blood lust.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1168, + "name": "Tamayu", + "examine": "A hunter who long ago succumbed to blood lust.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1169, + "name": "Tamayu", + "examine": "A hunter who long ago succumbed to blood lust.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1170, + "name": "Tamayu", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1171, + "name": "Lubufu", + "examine": "A crotchety old fisherman who doesn\u0027t like young whippersnappers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1172, + "name": "The Shaikahan", + "examine": "A huge beast, resembling in some ways a lion, but mostly a twisted nightmare.", + "respawn": 10, + "combat": 83, + "hitpoints": 100, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1199, + "defenceAnim": 1200, + "deathAnim": 1201, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1173, + "name": "The Shaikahan", + "examine": "A huge beast, resembling in some ways a lion, but mostly a twisted nightmare.", + "respawn": 10, + "combat": 83, + "hitpoints": 100, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1199, + "defenceAnim": 1200, + "deathAnim": 1201, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1174, + "name": "Fishing spot", + "examine": "There are brightly coloured fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1175, + "name": "Fishing spot", + "examine": "There are brightly coloured fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1176, + "name": "Fishing spot", + "examine": "Something dark green is lurking in these waters.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1177, + "name": "Fishing spot", + "examine": "Something dark green is lurking in these waters.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1178, + "name": "Fishing spot", + "examine": "Something dark green is lurking in these waters.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1179, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1180, + "name": "Cormorant", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1181, + "name": "Albatross", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1182, + "name": "Lord Iorwerth", + "examine": "An elf lord.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1183, + "name": "Elf warrior", + "examine": "He looks pretty handy with that bow.", + "respawn": 10, + "combat": 90, + "hitpoints": 105, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 426, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 136, + "defenceMelee": 136, + "defenceRange": 136, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1184, + "name": "Elf warrior", + "examine": "I don\u0027t wanna be at the wrong end of that pike.", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1185, + "name": "Elven city guard", + "examine": "An elven city guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1186, + "name": "Idris", + "examine": "An elven hunting party leader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1187, + "name": "Essyllt", + "examine": "An elven war band leader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1188, + "name": "Morvran", + "examine": "An elven warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1189, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1190, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1191, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1192, + "name": "Rabbit", + "examine": "A cute bunny rabbit.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1245, + "defenceAnim": 1244, + "deathAnim": 1246, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1193, + "name": "Rabbit", + "examine": "A cute bunny rabbit.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1245, + "defenceAnim": 1244, + "deathAnim": 1246, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1194, + "name": "Rabbit", + "examine": "A cute bunny rabbit.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1245, + "defenceAnim": 1244, + "deathAnim": 1246, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1195, + "name": "Grizzly bear", + "examine": "Eek! A big bear!", + "respawn": 10, + "combat": 42, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1196, + "name": "Grizzly bear cub", + "examine": "Eek! A bear cub!", + "respawn": 10, + "combat": 33, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1197, + "name": "Grizzly bear cub", + "examine": "Eek! A bear cub!", + "respawn": 10, + "combat": 36, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1198, + "name": "Dire Wolf", + "examine": "What big teeth you have.", + "respawn": 10, + "combat": 88, + "hitpoints": 86, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1199, + "name": "Elf Tracker", + "examine": "An elf tracker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1200, + "name": "Tyras guard", + "examine": "One of King Tyras\u0027s men.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1201, + "name": "Elf warrior", + "examine": "He looks pretty handy with that bow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1202, + "name": "Arianwyn", + "examine": "An odd looking person.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1203, + "name": "Tyras guard", + "examine": "One of King Tyras\u0027s men.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1204, + "name": "Tyras guard", + "examine": "One of King Tyras\u0027s men.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1205, + "name": "Tyras guard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1206, + "name": "Tyras guard", + "examine": "One of King Tyras\u0027s men.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1207, + "name": "General Hining", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1208, + "name": "Quartermaster", + "examine": "Responsible for the food and equipment of the troops.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1209, + "name": "Koftik", + "examine": "The cave guide.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1210, + "name": "Kings messenger", + "examine": "One of King Lathas\u0027 messengers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1211, + "name": "Will o\u0027 the wisp", + "examine": "Mysterious swamp lights...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1212, + "name": "Will o\u0027 the wisp", + "examine": "Mysterious swamp lights...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1213, + "name": "Tegid", + "examine": "He\u0027s washing his clothes in the lake.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1214, + "name": "Thistle", + "examine": "It\u0027s a Troll Thistle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1215, + "name": "Parrots", + "examine": "What a colourful bunch of parrots!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1216, + "name": "Parroty Pete", + "examine": "He seems strangely familiar...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1217, + "name": "Gardener", + "examine": "An old gardener.", + "respawn": 10, + "combat": 4, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1218, + "name": "Ghoul", + "examine": "It\u0027s totally savage.", + "respawn": 10, + "combat": 42, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 1219, + "name": "Leech", + "examine": "Yuck! It\u0027s all slimy!", + "respawn": 10, + "combat": 52, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1220, + "name": "Vampire", + "examine": "Where did that come from?", + "respawn": 10, + "combat": 72, + "hitpoints": 56, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 72, + "defenceMelee": 72, + "defenceRange": 72, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1221, + "name": "Spider", + "examine": "Nasty little creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1222, + "name": "Mist", + "examine": "Is it a low cloud?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1223, + "name": "Vampire", + "examine": "It looks really hungry!", + "respawn": 10, + "combat": 61, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1224, + "name": "Vampyric hound", + "examine": "And I shall call him Fang.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 75, + "defenceAnim": 76, + "deathAnim": 78, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1225, + "name": "Vampire", + "examine": "A royal pain in the neck.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1226, + "name": "Tree", + "examine": "Its bark is worse than its swipe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1227, + "name": "Myre Blamish Snail", + "examine": "A marsh coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 9, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1228, + "name": "Blood Blamish Snail", + "examine": "A blood coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1229, + "name": "Ochre Blamish Snail", + "examine": "A muddy coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 10, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1230, + "name": "Bruise Blamish Snail", + "examine": "A bruise blue coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 20, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1231, + "name": "Bark Blamish Snail", + "examine": "A branch bark coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 15, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1232, + "name": "Myre Blamish Snail", + "examine": "A marsh coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 10, + "hitpoints": 9, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 11, + "defenceMelee": 11, + "defenceRange": 11, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1233, + "name": "Blood Blamish Snail", + "examine": "A blood coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1234, + "name": "Ochre Blamish Snail", + "examine": "A muddy coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 15, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1235, + "name": "Bruise Blamish Snail", + "examine": "A bruise blue coloured blamish snail, these types are said to spit acid.", + "respawn": 10, + "combat": 20, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1277, + "defenceAnim": 1278, + "deathAnim": 1279, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1236, + "name": "Fishing spot", + "examine": "It looks like there might be \u0027things\u0027 swimming in the murky water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1237, + "name": "Fishing spot", + "examine": "It looks like there might be \u0027things\u0027 swimming in the murky water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1238, + "name": "Fishing spot", + "examine": "It looks like there might be \u0027things\u0027 swimming in the murky water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1239, + "name": "Bedabin Nomad Fighter", + "examine": "A bedabin nomad fighter - a sandy swordsman.", + "respawn": 10, + "combat": 56, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1240, + "name": "Loar Shadow", + "examine": "A shadowy sort of entity, kind of creepy looking.", + "respawn": 10, + "combat": 40, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1290, + "defenceAnim": 1290, + "deathAnim": 1290, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1241, + "name": "Loar Shade", + "examine": "The shadowy remains of a long departed soul.", + "respawn": 10, + "combat": 40, + "hitpoints": 38, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1284, + "defenceAnim": 1283, + "deathAnim": 1285, + "attackBonus": 49, + "defenceMelee": 49, + "defenceRange": 49, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1242, + "name": "Shade Spirit", + "examine": "A spirit rising towards eternal peace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1243, + "name": "Phrin Shadow", + "examine": "A shadowy sort of entity, kind of creepy looking.", + "respawn": 10, + "combat": 60, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1290, + "defenceAnim": 1290, + "deathAnim": 1290, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1244, + "name": "Phrin Shade", + "examine": "The shadowy remains of a long departed soul.", + "respawn": 10, + "combat": 60, + "hitpoints": 56, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1284, + "defenceAnim": 1283, + "deathAnim": 1285, + "attackBonus": 72, + "defenceMelee": 72, + "defenceRange": 72, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1245, + "name": "Riyl Shadow", + "examine": "A shadowy sort of entity, kind of creepy looking.", + "respawn": 10, + "combat": 80, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1246, + "name": "Riyl Shade", + "examine": "The shadowy remains of a long departed soul.", + "respawn": 10, + "combat": 80, + "hitpoints": 74, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1284, + "defenceAnim": 1283, + "deathAnim": 1285, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1247, + "name": "Asyn Shadow", + "examine": "A shadowy sort of entity, kind of creepy looking.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1290, + "defenceAnim": 1290, + "deathAnim": 1290, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1248, + "name": "Asyn Shade", + "examine": "The shadowy remains of a long departed soul.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1284, + "defenceAnim": 1283, + "deathAnim": 1285, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1249, + "name": "Fiyr Shadow", + "examine": "A shadowy sort of entity, kind of creepy looking.", + "respawn": 10, + "combat": 120, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1290, + "defenceAnim": 1290, + "deathAnim": 1290, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1250, + "name": "Fiyr Shade", + "examine": "The shadowy remains of a long departed soul.", + "respawn": 10, + "combat": 120, + "hitpoints": 110, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1284, + "defenceAnim": 1283, + "deathAnim": 1285, + "attackBonus": 143, + "defenceMelee": 143, + "defenceRange": 143, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1251, + "name": "Afflicted(Ulsquire)", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1252, + "name": "Ulsquire Shauncy", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1253, + "name": "Afflicted(Razmire)", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1254, + "name": "Razmire Keelgan", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1255, + "name": "Mort\u0027ton Local", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1256, + "name": "Mort\u0027ton Local", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1257, + "name": "Afflicted", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 37, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1258, + "name": "Afflicted", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 34, + "hitpoints": 38, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 49, + "defenceMelee": 49, + "defenceRange": 49, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1259, + "name": "Mort\u0027ton local", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1260, + "name": "Mort\u0027ton local", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1261, + "name": "Afflicted", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 32, + "hitpoints": 28, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 36, + "defenceMelee": 36, + "defenceRange": 36, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1262, + "name": "Afflicted", + "examine": "A local villager of Mort\u0027ton.", + "respawn": 10, + "combat": 30, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1263, + "name": "Wizard", + "examine": "Slightly more magical.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1264, + "name": "Saradomin wizard", + "examine": "A follower of Saradomin.", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1265, + "name": "Rock Crab", + "examine": "No one likes crabs...", + "respawn": 10, + "combat": 13, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1312, + "defenceAnim": 1313, + "deathAnim": 1314, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1266, + "name": "Rocks", + "examine": "A rocky outcrop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1267, + "name": "Rock Crab", + "examine": "No one likes crabs...", + "respawn": 10, + "combat": 13, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1312, + "defenceAnim": 1313, + "deathAnim": 1314, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1268, + "name": "Rocks", + "examine": "A rocky outcrop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1269, + "name": "Olaf the Bard", + "examine": "A Fremennik bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1270, + "name": "Lalli", + "examine": "Distinctly troll-shaped.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1271, + "name": "Golden sheep", + "examine": "Freshly shorn.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1272, + "name": "Golden sheep", + "examine": "Lovely thick wool.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1273, + "name": "Fossegrimen", + "examine": "A powerful spirit that lives in this lake.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1274, + "name": "Ospak", + "examine": "Looks like he\u0027s had a few drinks already.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1275, + "name": "Styrmir", + "examine": "Doesn\u0027t look like the musical type.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1276, + "name": "Torbrund", + "examine": "Waiting for the show.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1277, + "name": "Fridgeir", + "examine": "A music lover?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1278, + "name": "Longhall Bouncer", + "examine": "He\u0027s fat, he\u0027s round, he bounces on the ground. That\u0027s how he got the job.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1279, + "name": "The Draugen", + "examine": "A fearful spirit of the drowned.", + "respawn": 10, + "combat": 69, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1280, + "name": "Butterfly", + "examine": "Flutter by oh butterfly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1281, + "name": "Sigli the Huntsman", + "examine": "A Fremennik hunter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1282, + "name": "Sigmund The Merchant", + "examine": "A Fremennik merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1283, + "name": "Swensen the Navigator", + "examine": "A Fremennik navigator.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1284, + "name": "Bjorn", + "examine": "Looks like he\u0027s having fun!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1285, + "name": "Eldgrim", + "examine": "He\u0027s only as think as you drunk he is!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1286, + "name": "Manni the Reveller", + "examine": "Every innkeeper\u0027s best friend!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1287, + "name": "Council workman", + "examine": "Supposedly fixes things around Wildy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1288, + "name": "Peer the Seer", + "examine": "A Fremennik riddler.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1289, + "name": "Thorvald the Warrior", + "examine": "A Fremennik hero.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1290, + "name": "Koschei the deathless", + "examine": "Your challenge awaits!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1291, + "name": "Koschei the deathless", + "examine": "Your challenge awaits!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1292, + "name": "Koschei the deathless", + "examine": "Your challenge awaits!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1293, + "name": "Koschei the deathless", + "examine": "Your challenge awaits!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1294, + "name": "Brundt the Chieftain", + "examine": "The Fremennik tribe\u0027s chieftain.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1295, + "name": "Askeladden", + "examine": "Looks like a wanna be Fremennik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1296, + "name": "Guard", + "examine": "Stands around and looks at stuff all day.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1297, + "name": "Guard", + "examine": "Stands around and looks tough all day.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1298, + "name": "Town Guard", + "examine": "What a rubbish job he has.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1299, + "name": "Town Guard", + "examine": "Who\u0027s going to steal a whole town anyway?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1300, + "name": "Thora the Barkeep", + "examine": "The Longhall barkeep", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1301, + "name": "Yrsa", + "examine": "Pretty shabbily dressed for a clothes shop owner.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1302, + "name": "Fisherman", + "examine": "There\u0027s something fishy about this guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1303, + "name": "Skulgrimen", + "examine": "Sells and makes weapons and armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1304, + "name": "Sailor", + "examine": "He\u0027s strong to the finish, because he eats cabbage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1305, + "name": "Agnar", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1306, + "name": "Freidir", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1307, + "name": "Borrokar", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1308, + "name": "Lanzig", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1309, + "name": "Pontak", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1310, + "name": "Freygerd", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1311, + "name": "Lensa", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1312, + "name": "Jennella", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1313, + "name": "Sassilik", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1314, + "name": "Inga", + "examine": "One of Rellekka\u0027s many citizens.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1315, + "name": "Fish monger", + "examine": "Fish-tastic!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1316, + "name": "Fur trader", + "examine": "I wonder what he does with all that fur?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1317, + "name": "Market Guard", + "examine": "Keeps the stalls secure.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1318, + "name": "Warrior", + "examine": "A hardened Fremennik warrior.", + "respawn": 10, + "combat": 48, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1319, + "name": "Fox", + "examine": "Foxy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1320, + "name": "Bunny", + "examine": "Hoppity, hoppity.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1245, + "defenceAnim": 1244, + "deathAnim": 1246, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1321, + "name": "Bunny", + "examine": "Hoppity, hoppity.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1245, + "defenceAnim": 1244, + "deathAnim": 1246, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1322, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1323, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1324, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1325, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1326, + "name": "Bear Cub", + "examine": "Cute. But deadly.", + "respawn": 10, + "combat": 15, + "hitpoints": 21, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 27, + "defenceMelee": 27, + "defenceRange": 27, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1327, + "name": "Bear Cub", + "examine": "Cute. But deadly.", + "respawn": 10, + "combat": 15, + "hitpoints": 21, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 41, + "defenceAnim": 42, + "deathAnim": 44, + "attackBonus": 27, + "defenceMelee": 27, + "defenceRange": 27, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1328, + "name": "Unicorn Foal", + "examine": "Horned Horsey.", + "respawn": 10, + "combat": 12, + "hitpoints": 14, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 289, + "defenceAnim": 290, + "deathAnim": 292, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1329, + "name": "Black unicorn Foal", + "examine": "Cute but evil.", + "respawn": 10, + "combat": 22, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 289, + "defenceAnim": 290, + "deathAnim": 292, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1330, + "name": "Wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 64, + "hitpoints": 69, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 89, + "defenceMelee": 89, + "defenceRange": 89, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1331, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1332, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1333, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1334, + "name": "Jossik", + "examine": "Apparently he keeps a lighthouse.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1335, + "name": "Jossik", + "examine": "Looks like he\u0027s in trouble...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1336, + "name": "Larrissa", + "examine": "A fremennik girl.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1337, + "name": "Larrissa", + "examine": "A fremennik girl.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1338, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 74, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1339, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 74, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1340, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 74, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1341, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1342, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1343, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1343, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1344, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1345, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1346, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1347, + "name": "Dagannoth", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1348, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1349, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1350, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1351, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1352, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1353, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1354, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1355, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1356, + "name": "Dagannoth mother", + "examine": "A horror from the ocean depths...", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 1341, + "defenceAnim": 1340, + "deathAnim": 1342, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1357, + "name": "Sam", + "examine": "Pretty barmaid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1358, + "name": "Rachael", + "examine": "Pretty barmaid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1359, + "name": "Queen Sigrid", + "examine": "The Queen of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1360, + "name": "Banker", + "examine": "He seems happy to see you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1361, + "name": "Arnor", + "examine": "A subject of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1362, + "name": "Haming", + "examine": "A subject of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1363, + "name": "Moldof", + "examine": "A subject of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1364, + "name": "Helga", + "examine": "A subject of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1365, + "name": "Matilda", + "examine": "A subject of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1366, + "name": "Ashild", + "examine": "A subject of Etceteria.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1367, + "name": "Skraeling", + "examine": "A warrior of Etceteria.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1368, + "name": "Skraeling", + "examine": "A warrior of Etceteria.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1369, + "name": "Fishmonger", + "examine": "Hmm, he smells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1370, + "name": "Greengrocer", + "examine": "At least he eats his greens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1371, + "name": "Prince Brand", + "examine": "The Prince of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1372, + "name": "Princess Astrid", + "examine": "The Princess of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1373, + "name": "King Vargas", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1374, + "name": "Guard", + "examine": "He\u0027s guarding the throne room.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1375, + "name": "Advisor Ghrim", + "examine": "He probably hasn\u0027t smiled since the Third Age.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1376, + "name": "Derrik", + "examine": "Smithy for Sogthorpe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1377, + "name": "Farmer", + "examine": "He\u0027s cutting the wheat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1378, + "name": "Flower Girl", + "examine": "No-one would mistake her for a duchess.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1379, + "name": "Ragnar", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1380, + "name": "Einar", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1381, + "name": "Alrik", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1382, + "name": "Thorhild", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1383, + "name": "Halla", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1384, + "name": "Yrsa", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1385, + "name": "Sailor", + "examine": "He\u0027s strong to the finish, because he eats cabbage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1386, + "name": "Rannveig", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1387, + "name": "Thora", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1388, + "name": "Valgerd", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1389, + "name": "Skraeling", + "examine": "A warrior of Miscellania.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1390, + "name": "Broddi", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1391, + "name": "Skraeling", + "examine": "A warrior of Miscellania.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1392, + "name": "Ragnvald", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 2, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1393, + "name": "Fishmonger", + "examine": "Hmm, he smells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1394, + "name": "Greengrocer", + "examine": "At least he eats his greens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1395, + "name": "Lumberjack Leif", + "examine": "He\u0027s a lumberjack, and he\u0027s okay.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1396, + "name": "Miner Magnus", + "examine": "He\u0027s just mining his own business.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1397, + "name": "Fisherman Frodi", + "examine": "There\u0027s something fishy about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1398, + "name": "Gardener Gunnhild", + "examine": "She\u0027s looking a bit weedy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1399, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1400, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1401, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1402, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1403, + "name": "Rooster", + "examine": "He rules the, er, roost.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 55, + "defenceAnim": 56, + "deathAnim": 57, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1404, + "name": "Rabbit", + "examine": "Aww, how cute.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1245, + "defenceAnim": 1244, + "deathAnim": 1246, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1405, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1406, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1407, + "name": "Daero", + "examine": "Daero gives off an easy sense of authority.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1408, + "name": "Waydar", + "examine": "Waydar is some kind of flight officer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1409, + "name": "Waydar", + "examine": "Waydar is some kind of flight officer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1410, + "name": "Waydar", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1411, + "name": "Garkor", + "examine": "A large and weathered looking Gnome veteran.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1412, + "name": "Garkor", + "examine": "A large and weathered looking Gnome veteran.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1413, + "name": "Lumo", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1414, + "name": "Lumo", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1415, + "name": "Bunkdo", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1416, + "name": "Bunkdo", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1417, + "name": "Carado", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1418, + "name": "Carado", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1419, + "name": "Lumdo", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1420, + "name": "Karam", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1421, + "name": "Karam", + "examine": "All you see is a glimmer of light and the suggestion of shadow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1422, + "name": "Karam", + "examine": "All you see is a glimmer of light and the suggestion of shadow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1423, + "name": "Bunkwicket", + "examine": "This Gnome is busy applying some kind of pasty material to the cave walls.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1424, + "name": "Waymottin", + "examine": "This Gnome is busy applying some kind of pasty material to the cave walls.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1425, + "name": "Zooknock", + "examine": "A wizened little Gnome dressed in brightly coloured clothes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1426, + "name": "Zooknock", + "examine": "A wizened little Gnome dressed in brightly coloured clothes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1427, + "name": "G.L.O. Caranock", + "examine": "An official looking Gnome with small beady eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1428, + "name": "G.L.O. Caranock", + "examine": "An official looking Gnome with small beady eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1429, + "name": "Dugopul", + "examine": "A large hairy monkey with a spade.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1430, + "name": "Salenab", + "examine": "It\u0027s Salenab the monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1431, + "name": "Trefaji", + "examine": "A huge brutish gorilla. He looks like a jail guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1432, + "name": "Aberab", + "examine": "A huge brutish gorilla. He looks like a jail guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1433, + "name": "Solihib", + "examine": "The food merchant of Ape Atoll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1434, + "name": "Daga", + "examine": "A shrewd-looking monkey swordsmith.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1435, + "name": "Tutab", + "examine": "A magical trinket dealer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1436, + "name": "Ifaba", + "examine": "A general store type of monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1437, + "name": "Hamab", + "examine": "A female monkey skilled in crafting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1438, + "name": "Hafuba", + "examine": "A huge gorilla, head priest of this temple.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1439, + "name": "Denadu", + "examine": "A small, well dressed monkey clasping a mace. He looks like a priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1440, + "name": "Lofu", + "examine": "A small, well dressed monkey clasping a mace. He looks like a priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1441, + "name": "Kruk", + "examine": "A large ninja monkey wielding two scimitars.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1442, + "name": "Duke", + "examine": "A large ninja monkey wielding two scimitars.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1443, + "name": "Oipuis", + "examine": "A large ninja monkey wielding two scimitars.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1444, + "name": "Uyoro", + "examine": "A large ninja monkey wielding two scimitars.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1445, + "name": "Ouhai", + "examine": "A large ninja monkey wielding two scimitars.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1446, + "name": "Uodai", + "examine": "A large ninja monkey wielding two scimitars.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1447, + "name": "Padulah", + "examine": "A scimitar wielding ninja monkey. He looks like he is guarding something.", + "respawn": 10, + "combat": 149, + "hitpoints": 133, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 172, + "defenceMelee": 172, + "defenceRange": 172, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1448, + "name": "Awowogei", + "examine": "A rather dapper little monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1449, + "name": "Uwogo", + "examine": "A smartly clothed large monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1450, + "name": "Muruwoi", + "examine": "A smartly clothed large monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1451, + "name": "Sleeping Monkey", + "examine": "A rather sleepy looking guard, wielding some kind of bat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1452, + "name": "Monkey Child", + "examine": "An adorable little monkey child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1453, + "name": "The Monkey\u0027s Uncle", + "examine": "He looks like the Monkey\u0027s Uncle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1454, + "name": "The Monkey\u0027s Aunt", + "examine": "She looks like the Monkey\u0027s Aunt.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1455, + "name": "Monkey Guard", + "examine": "A scimitar wielding ninja monkey.", + "respawn": 10, + "combat": 149, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1456, + "name": "Monkey Archer", + "examine": "A bow wielding ninja monkey.", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1457, + "name": "Monkey Archer", + "examine": "A bow wielding ninja monkey. It looks particularly dangerous.", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1458, + "name": "Monkey Archer", + "examine": "A bow wielding ninja monkey.", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1459, + "name": "Monkey Guard", + "examine": "A huge brutish gorilla armoured with dangerous looking vambraces.", + "respawn": 10, + "combat": 167, + "hitpoints": 130, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 169, + "defenceMelee": 169, + "defenceRange": 169, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1460, + "name": "Monkey Guard", + "examine": "A huge brutish gorilla armoured with dangerous looking vambraces.", + "respawn": 10, + "combat": 167, + "hitpoints": 130, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 169, + "defenceMelee": 169, + "defenceRange": 169, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1461, + "name": "Elder Guard", + "examine": "A huge brutish gorilla stands here, blocking the way.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1462, + "name": "Elder Guard", + "examine": "A huge brutish gorilla stands here, blocking the way.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1463, + "name": "Monkey", + "examine": "This monkey seems like it might want to talk!", + "respawn": 10, + "combat": 3, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1464, + "name": "Monkey", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 3, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1465, + "name": "Monkey Zombie", + "examine": "A large and lumbering undead monkey.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1466, + "name": "Monkey Zombie", + "examine": "A large and lumbering undead monkey stands here, blocking the way.", + "respawn": 10, + "combat": 129, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1467, + "name": "Monkey Zombie", + "examine": "A recently deceased monkey. Its flesh seems to be worse for the wear.", + "respawn": 10, + "combat": 82, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1468, + "name": "Bonzara", + "examine": "A small monkey dressed in purple clothes. He looks like a priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1469, + "name": "Monkey minder", + "examine": "He looks like the type of guy who would mind monkeys.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1470, + "name": "Foreman", + "examine": "The boss!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1471, + "name": "Skeleton", + "examine": "It looks just a bit... underfed.", + "respawn": 10, + "combat": 142, + "hitpoints": 112, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 145, + "defenceMelee": 145, + "defenceRange": 145, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1472, + "name": "Jungle Demon", + "examine": "A Greater Jungle demon. A magical aura emanates from its hide.", + "respawn": 10, + "combat": 195, + "hitpoints": 170, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 221, + "defenceMelee": 221, + "defenceRange": 221, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1473, + "name": "Spider", + "examine": "It\u0027s an extremely small brown spider, probably very poisonous.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1474, + "name": "Spider", + "examine": "It\u0027s an extremely small brown spider, probably very poisonous.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1475, + "name": "Bird", + "examine": "It\u0027s a brightly coloured bird of the jungle.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1476, + "name": "Bird", + "examine": "It\u0027s a brightly coloured bird of the jungle. It flies very quickly.", + "respawn": 10, + "combat": 5, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1477, + "name": "Scorpion", + "examine": "It\u0027s an extremely dangerous looking scorpion.", + "respawn": 10, + "combat": 38, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1478, + "name": "Jungle spider", + "examine": "A very dangerous looking spider, with its fangs unsheathed.", + "respawn": 10, + "combat": 37, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1479, + "name": "Snake", + "examine": "It\u0027s a camouflaged jungle snake.", + "respawn": 10, + "combat": 24, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1480, + "name": "Small ninja monkey", + "examine": "It\u0027s a monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1481, + "name": "Medium ninja monkey", + "examine": "It\u0027s a monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1482, + "name": "Gorilla", + "examine": "It\u0027s a gorilla.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1483, + "name": "Bearded gorilla", + "examine": "It\u0027s a gorilla.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1484, + "name": "Ancient monkey", + "examine": "It\u0027s a monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1485, + "name": "Small zombie monkey", + "examine": "It\u0027s a monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1486, + "name": "Large zombie monkey", + "examine": "It\u0027s a monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1487, + "name": "Monkey", + "examine": "It\u0027s a monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1488, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1489, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1490, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1491, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1492, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1493, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1494, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1495, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1496, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1497, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1498, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1499, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1500, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1501, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1502, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1503, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1504, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1505, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1506, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1507, + "name": "Dummy", + "examine": "Dummy", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1508, + "name": "Forester", + "examine": "A basic trained mercenary archer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1509, + "name": "Woman-at-arms", + "examine": "A basic trained mercenary fighter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1510, + "name": "Apprentice", + "examine": "A moderately experienced mercenary mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1511, + "name": "Ranger", + "examine": "A moderately experienced mercenary archer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1512, + "name": "Adventurer", + "examine": "An extensively experienced fighter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1513, + "name": "Mage", + "examine": "An extensively experienced mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1514, + "name": "Hiylik Myna", + "examine": "A local holy man who works at Paterdomus.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1515, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1516, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1517, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1518, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1519, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1520, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1521, + "name": "Nail beast", + "examine": "A huge nail beast. Its nails appear very sharp.", + "respawn": 10, + "combat": 69, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1522, + "name": "Nail beast", + "examine": "A huge nail beast. Its nails appear very sharp.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1523, + "name": "Nail beast", + "examine": "A huge nail beast. Its nails appear very sharp.", + "respawn": 10, + "combat": 141, + "hitpoints": 75, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1524, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1525, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1526, + "name": "Lanthus", + "examine": "He must run this place.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1527, + "name": "Mine cart", + "examine": "Big, metal and wheeled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1528, + "name": "Zealot", + "examine": "His robes prominently display the star of Saradomin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1529, + "name": "Sheep", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1530, + "name": "Rabbit", + "examine": "Bright eyes.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1531, + "name": "Imp", + "examine": "A cheeky chappy.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1532, + "name": "Barricade", + "examine": "Perfect for stopping the enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 50, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1533, + "name": "Barricade", + "examine": "Perfect for stopping the enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 50, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1534, + "name": "Barricade", + "examine": "Perfect for stopping the enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 50, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1535, + "name": "Barricade", + "examine": "Perfect for stopping the enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 50, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 30, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1536, + "name": "Possessed pickaxe", + "examine": "How does it move of its own accord?", + "respawn": 10, + "combat": 50, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1537, + "name": "Iron pickaxe", + "examine": "A strange disturbance in the air.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1538, + "name": "Corpse", + "examine": "Well, at least he doesn\u0027t have to worry about getting \u0027black lung\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1539, + "name": "Skeletal miner", + "examine": "I don\u0027t think the pickaxe is for hitting rocks.", + "respawn": 10, + "combat": 42, + "hitpoints": 39, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1540, + "name": "Treus Dayth", + "examine": "Eeek! A big ghost!", + "respawn": 10, + "combat": 95, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1541, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 95, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1542, + "name": "Loading crane", + "examine": "Those are some of the biggest teeth I\u0027ve ever seen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1543, + "name": "Innocent-looking key", + "examine": "A shiny key sitting quietly on a crate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1544, + "name": "Mine cart", + "examine": "Big, metal and wheeled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1545, + "name": "Mine cart", + "examine": "Big, metal and wheeled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1546, + "name": "Mine cart", + "examine": "Big, metal and wheeled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1547, + "name": "Mine cart", + "examine": "Big, metal, and wheeled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1548, + "name": "Mine cart", + "examine": "Big, metal and wheeled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1549, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 29, + "hitpoints": 31, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 40, + "defenceMelee": 40, + "defenceRange": 40, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1550, + "name": "Haze", + "examine": "A large boisterous bird, a delicacy for ogres.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1551, + "name": "Mischievous ghost", + "examine": "That ghost looks like he\u0027s up to something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1552, + "name": "Santa", + "examine": "He knows if you\u0027ve been naughty or nice.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1553, + "name": "Ug", + "examine": "A frail little troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1554, + "name": "Aga", + "examine": "A beautiful troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1555, + "name": "Arrg", + "examine": "A massive, scary-looking troll.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1556, + "name": "Arrg", + "examine": "A massive, scary-looking troll.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1557, + "name": "Ug", + "examine": "A frail little troll.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1558, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1559, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1560, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 124, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1561, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 123, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1562, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 120, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1563, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 121, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1564, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 120, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1565, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 120, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1566, + "name": "Ice Troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 121, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1567, + "name": "Cyreg Paddlehorn", + "examine": "A tall and imposing man who\u0027s more than familiar with boating.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1568, + "name": "Curpile Fyod", + "examine": "A typical, if overly heavy handed, jobs worth guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1569, + "name": "Veliaf Hurtz", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1570, + "name": "Sani Piliu", + "examine": "A pretty young rogue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1571, + "name": "Harold Evans", + "examine": "Hot headed big built youth who trained in the militia.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1572, + "name": "Radigad Ponfit", + "examine": "A quick and agile fighter, a mercenary from Asgarnia.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1573, + "name": "Polmafi Ferdygris", + "examine": "A member of the Myreque and intellectual assistant to Veliaf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1574, + "name": "Ivan Strom", + "examine": "A member of the Myreque and an aspiring young priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1575, + "name": "Skeleton Hellhound", + "examine": "A creature summoned by Vanstrom to kill the remaining Myreque.", + "respawn": 10, + "combat": 97, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1576, + "name": "Stranger", + "examine": "A typical villager of Canifis.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1577, + "name": "Vanstrom Klause", + "examine": "A curious fellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1578, + "name": "Mist", + "examine": "A billowing cloud of fine mist...it looks creepy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1579, + "name": "Vanstrom Klause", + "examine": "A curious fellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1580, + "name": "Vanstrom Klause", + "examine": "An evil vampire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1581, + "name": "Vanstrom Klause", + "examine": "An evil vampire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1582, + "name": "Fire giant", + "examine": "A very large elemental adversary.", + "respawn": 10, + "combat": 86, + "hitpoints": 111, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 144, + "defenceMelee": 144, + "defenceRange": 144, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1583, + "name": "Fire giant", + "examine": "A very large elemental adversary.", + "respawn": 10, + "combat": 86, + "hitpoints": 111, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 144, + "defenceMelee": 144, + "defenceRange": 144, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1584, + "name": "Fire giant", + "examine": "A very large elemental adversary.", + "respawn": 10, + "combat": 86, + "hitpoints": 111, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 144, + "defenceMelee": 144, + "defenceRange": 144, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1585, + "name": "Fire giant", + "examine": "A very large elemental adversary.", + "respawn": 10, + "combat": 86, + "hitpoints": 111, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 144, + "defenceMelee": 144, + "defenceRange": 144, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1586, + "name": "Fire giant", + "examine": "A very large elemental adversary.", + "respawn": 10, + "combat": 86, + "hitpoints": 111, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 144, + "defenceMelee": 144, + "defenceRange": 144, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1587, + "name": "Moss giant", + "examine": "His beard seems to have a life of its own.", + "respawn": 10, + "combat": 42, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1588, + "name": "Moss giant", + "examine": "His beard seems to have a life of its own.", + "respawn": 10, + "combat": 42, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1589, + "name": "Baby dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 25, + "defenceAnim": 26, + "deathAnim": 28, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1590, + "name": "Bronze dragon", + "examine": "Its scales seem to be made of bronze.", + "respawn": 10, + "combat": 131, + "hitpoints": 122, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 158, + "defenceMelee": 158, + "defenceRange": 158, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1591, + "name": "Iron dragon", + "examine": "Its scales seem to be made of iron.", + "respawn": 10, + "combat": 189, + "hitpoints": 165, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 214, + "defenceMelee": 214, + "defenceRange": 214, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1592, + "name": "Steel dragon", + "examine": "Its scales seem to be made of steel.", + "respawn": 10, + "combat": 246, + "hitpoints": 210, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 273, + "defenceMelee": 273, + "defenceRange": 273, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1593, + "name": "Wild dog", + "examine": "Looks like it\u0027s got Rabies!", + "respawn": 10, + "combat": 63, + "hitpoints": 56, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 72, + "defenceMelee": 72, + "defenceRange": 72, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1594, + "name": "Wild dog", + "examine": "An unsuitable pet.", + "respawn": 10, + "combat": 63, + "hitpoints": 56, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 72, + "defenceMelee": 72, + "defenceRange": 72, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1595, + "name": "Saniboch", + "examine": "Looks like he wants money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1596, + "name": "Mazchna", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1597, + "name": "Vannaka", + "examine": "He looks dangerous!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1598, + "name": "Chaeldar", + "examine": "She looks dangerous!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1599, + "name": "Duradel", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1600, + "name": "Cave crawler", + "examine": "A spiky crawling critter.", + "respawn": 10, + "combat": 23, + "hitpoints": 22, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1601, + "name": "Cave crawler", + "examine": "A spiky crawling critter.", + "respawn": 10, + "combat": 23, + "hitpoints": 22, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1602, + "name": "Cave crawler", + "examine": "A spiky crawling critter.", + "respawn": 10, + "combat": 23, + "hitpoints": 22, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1603, + "name": "Cave crawler", + "examine": "A spiky crawling critter.", + "respawn": 10, + "combat": 23, + "hitpoints": 22, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 1604, + "name": "Aberrant spectre", + "examine": "A very smelly ghost.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1605, + "name": "Aberrant spectre", + "examine": "A very smelly ghost.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1606, + "name": "Aberrant spectre", + "examine": "A very smelly ghost.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1607, + "name": "Aberrant spectre", + "examine": "A very smelly ghost.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1608, + "name": "Kurask", + "examine": "Large, heavy, with sharp things attached to its head.", + "respawn": 10, + "combat": 106, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1609, + "name": "Kurask", + "examine": "Larger, heavier, with sharper things attached to its head.", + "respawn": 10, + "combat": 106, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1610, + "name": "Gargoyle", + "examine": "Flies like a rock.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1611, + "name": "Gargoyle", + "examine": "A vicious bite on a feeble body.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1612, + "name": "Banshee", + "examine": "A tortured screaming soul.", + "respawn": 10, + "combat": 23, + "hitpoints": 22, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1613, + "name": "Nechryael", + "examine": "An evil death demon.", + "respawn": 10, + "combat": 115, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1614, + "name": "Death spawn", + "examine": "An evil death spawn.", + "respawn": 10, + "combat": 46, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1615, + "name": "Abyssal demon", + "examine": "A denizen of the Abyss!", + "respawn": 10, + "combat": 124, + "hitpoints": 150, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 195, + "defenceMelee": 195, + "defenceRange": 195, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1616, + "name": "Basilisk", + "examine": "The eyes of evil.", + "respawn": 10, + "combat": 61, + "hitpoints": 75, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1617, + "name": "Basilisk", + "examine": "The eyes of evil.", + "respawn": 10, + "combat": 61, + "hitpoints": 75, + "maxHit": 6, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1618, + "name": "Bloodveld", + "examine": "The tongue of evil.", + "respawn": 10, + "combat": 76, + "hitpoints": 120, + "maxHit": 8, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1619, + "name": "Bloodveld", + "examine": "The tongue of evil.", + "respawn": 10, + "combat": 76, + "hitpoints": 120, + "maxHit": 8, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1620, + "name": "Cockatrice", + "examine": "The winged reptile.", + "respawn": 10, + "combat": 37, + "hitpoints": 37, + "maxHit": 4, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 48, + "defenceMelee": 48, + "defenceRange": 48, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1621, + "name": "Cockatrice", + "examine": "The winged reptile.", + "respawn": 10, + "combat": 37, + "hitpoints": 37, + "maxHit": 4, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 48, + "defenceMelee": 48, + "defenceRange": 48, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1622, + "name": "Rockslug", + "examine": "He\u0027s one leg short!", + "respawn": 10, + "combat": 29, + "hitpoints": 27, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 35, + "defenceMelee": 35, + "defenceRange": 35, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1623, + "name": "Rockslug", + "examine": "He\u0027s one big leg short!", + "respawn": 10, + "combat": 29, + "hitpoints": 27, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 35, + "defenceMelee": 35, + "defenceRange": 35, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1624, + "name": "Dust devil", + "examine": "The vacuumed face of evil.", + "respawn": 10, + "combat": 93, + "hitpoints": 10, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 1557, + "defenceAnim": 1555, + "deathAnim": 1558, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1625, + "name": "Smokedevil", + "examine": "The cave-dwelling cousin of the dust devils.", + "respawn": 10, + "combat": 93, + "hitpoints": 10, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1626, + "name": "Turoth", + "examine": "She\u0027s one leg short!", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1627, + "name": "Turoth", + "examine": "It\u0027s one leg short!", + "respawn": 10, + "combat": 89, + "hitpoints": 81, + "maxHit": 9, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 105, + "defenceMelee": 105, + "defenceRange": 105, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1628, + "name": "Turoth", + "examine": "It\u0027s one small leg short!", + "respawn": 10, + "combat": 87, + "hitpoints": 79, + "maxHit": 9, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1629, + "name": "Turoth", + "examine": "He\u0027s one big leg short!", + "respawn": 10, + "combat": 85, + "hitpoints": 77, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1630, + "name": "Turoth", + "examine": "He\u0027s one big leg short!", + "respawn": 10, + "combat": 83, + "hitpoints": 76, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 98, + "defenceMelee": 98, + "defenceRange": 98, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1631, + "name": "Turoth", + "examine": "The slime of evil.", + "respawn": 10, + "combat": 88, + "hitpoints": 10, + "maxHit": 9, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1632, + "name": "Turoth", + "examine": "The slime of evil.", + "respawn": 10, + "combat": 88, + "hitpoints": 10, + "maxHit": 9, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1633, + "name": "Pyrefiend", + "examine": "A small fire demon.", + "respawn": 10, + "combat": 43, + "hitpoints": 45, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1634, + "name": "Pyrefiend", + "examine": "A small fire demon.", + "respawn": 10, + "combat": 43, + "hitpoints": 45, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1635, + "name": "Pyrefiend", + "examine": "A small fire demon.", + "respawn": 10, + "combat": 43, + "hitpoints": 45, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1636, + "name": "Pyrefiend", + "examine": "A small fire demon.", + "respawn": 10, + "combat": 43, + "hitpoints": 45, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1637, + "name": "Jelly", + "examine": "Looks scared to see me.", + "respawn": 10, + "combat": 78, + "hitpoints": 75, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1638, + "name": "Jelly", + "examine": "Doesn\u0027t look so tough...", + "respawn": 10, + "combat": 78, + "hitpoints": 75, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1639, + "name": "Jelly", + "examine": "Wibbly.", + "respawn": 10, + "combat": 78, + "hitpoints": 75, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1640, + "name": "Jelly", + "examine": "There\u0027s always room for jelly.", + "respawn": 10, + "combat": 78, + "hitpoints": 75, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1641, + "name": "Jelly", + "examine": "Needs cream.....", + "respawn": 10, + "combat": 78, + "hitpoints": 75, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1642, + "name": "Jelly", + "examine": "Wobbly...", + "respawn": 10, + "combat": 78, + "hitpoints": 75, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1643, + "name": "Infernal Mage", + "examine": "An evil magic user.", + "respawn": 10, + "combat": 66, + "hitpoints": 60, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 429, + "defenceAnim": 430, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1644, + "name": "Infernal Mage", + "examine": "An evil magic user.", + "respawn": 10, + "combat": 66, + "hitpoints": 60, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1645, + "name": "Infernal Mage", + "examine": "An evil magic user.", + "respawn": 10, + "combat": 66, + "hitpoints": 60, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1646, + "name": "Infernal Mage", + "examine": "An evil magic user.", + "respawn": 10, + "combat": 66, + "hitpoints": 60, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1647, + "name": "Infernal Mage", + "examine": "An evil magic user.", + "respawn": 10, + "combat": 66, + "hitpoints": 60, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1648, + "name": "Crawling Hand", + "examine": "Gimmie five. Actually, don\u0027t.", + "respawn": 10, + "combat": 8, + "hitpoints": 16, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1649, + "name": "Crawling Hand", + "examine": "Gimmie five. Actually, don\u0027t.", + "respawn": 10, + "combat": 8, + "hitpoints": 16, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1650, + "name": "Crawling Hand", + "examine": "Gimmie five. Actually, don\u0027t.", + "respawn": 10, + "combat": 7, + "hitpoints": 10, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1651, + "name": "Crawling Hand", + "examine": "Gimmie five. Actually, don\u0027t.", + "respawn": 10, + "combat": 8, + "hitpoints": 16, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1652, + "name": "Crawling Hand", + "examine": "Gimmie five. Actually, don\u0027t.", + "respawn": 10, + "combat": 8, + "hitpoints": 16, + "maxHit": 2, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1653, + "name": "Crawling Hand", + "examine": "Now THAT\u0027s handy.", + "respawn": 10, + "combat": 12, + "hitpoints": 19, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1654, + "name": "Crawling Hand", + "examine": "I\u0027m glad its just the hand I can see...", + "respawn": 10, + "combat": 12, + "hitpoints": 19, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1655, + "name": "Crawling Hand", + "examine": "A big severed hand.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1656, + "name": "Crawling Hand", + "examine": "Give the guy a big hand.....", + "respawn": 10, + "combat": 12, + "hitpoints": 19, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1657, + "name": "Crawling Hand", + "examine": "A big severed hand.", + "respawn": 10, + "combat": 12, + "hitpoints": 19, + "maxHit": 2, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1658, + "name": "Robe Store owner", + "examine": "A Supplier of Magical robes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1659, + "name": "Skullball", + "examine": "A human skull used as a ball.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1660, + "name": "Skullball Boss", + "examine": "He\u0027s in charge of the Skullball Course.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1661, + "name": "Agility Boss", + "examine": "He\u0027s in charge of the Agility Course.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1662, + "name": "Skullball Trainer", + "examine": "A skullball guide.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1663, + "name": "Agility Trainer", + "examine": "A werewolf agility trainer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1664, + "name": "Agility Trainer", + "examine": "Have you brought him the stick yet?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1665, + "name": "Werewolf", + "examine": "Looks like he\u0027s guarding a trapdoor...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1666, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1667, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1668, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1669, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1670, + "name": "Dr Fenkenstrain", + "examine": "Dr Fenkenstrain I presume.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1671, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1672, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1673, + "name": "Fenkenstrain\u0027s Monster", + "examine": "A hideous mix of human flesh.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1674, + "name": "Lord Rologarth", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1675, + "name": "Gardener Ghost", + "examine": "He must find gardening difficult since the accident.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1676, + "name": "Experiment", + "examine": "It has a key hanging from its collar.", + "respawn": 10, + "combat": 51, + "hitpoints": 40, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1677, + "name": "Experiment", + "examine": "One of Fenkenstrain\u0027s failed experiments.", + "respawn": 10, + "combat": 25, + "hitpoints": 100, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1678, + "name": "Experiment", + "examine": "One of Fenkenstrain\u0027s failed experiments.", + "respawn": 10, + "combat": 25, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1679, + "name": "Eluned", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1680, + "name": "Islwyn", + "examine": "An elven bowyer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1681, + "name": "Moss giant", + "examine": "Bigger than your average moss giant.", + "respawn": 10, + "combat": 84, + "hitpoints": 120, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1682, + "name": "Golrie", + "examine": "No longer locked in his own cage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1683, + "name": "Velorina", + "examine": "A ghost lady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1684, + "name": "Necrovarus", + "examine": "An evil priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1685, + "name": "Gravingas", + "examine": "This ghost looks quite rebellious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1686, + "name": "Ghost disciple", + "examine": "A ghost disciple.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1687, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1688, + "name": "Ak-Haranu", + "examine": "A trader from across the eastern sea.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1689, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1690, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1691, + "name": "Undead cow", + "examine": "It\u0027s an undead cow.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1692, + "name": "Undead chicken", + "examine": "Yep, definitely a chicken...an undead chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1693, + "name": "Giant lobster", + "examine": "An extremely vicious lobster.", + "respawn": 10, + "combat": 32, + "hitpoints": 32, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1694, + "name": "Robin", + "examine": "A master bowman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1695, + "name": "Old crone", + "examine": "An old, cranky lady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1696, + "name": "Old man", + "examine": "A creaky old man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1697, + "name": "Ghost villager", + "examine": "A spooky ghost villager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1698, + "name": "Tortured soul", + "examine": "This poor soul cannot understand why it has not passed to the next world.", + "respawn": 10, + "combat": 59, + "hitpoints": 51, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 66, + "defenceMelee": 66, + "defenceRange": 66, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1699, + "name": "Ghost shopkeeper", + "examine": "Beware the ghostly shopkeeper\u0027s wares!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1700, + "name": "Ghost innkeeper", + "examine": "Doesn\u0027t look like the bar\u0027s open anymore.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1701, + "name": "Ghost farmer", + "examine": "A spooky ghost farmer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1702, + "name": "Ghost banker", + "examine": "A ghost banker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1703, + "name": "Ghost sailor", + "examine": "A ghost sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1704, + "name": "Ghost captain", + "examine": "A ghostship captain.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1705, + "name": "Ghost captain", + "examine": "A ghostship captain.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1706, + "name": "Ghost guard", + "examine": "This ghost guards the gates of Port Phasmatys.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1707, + "name": "Ghost (?)", + "examine": "That ghost looks suspiciously like a cheap Halloween costume...", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1708, + "name": "Ghost (?)", + "examine": "That ghost looks suspiciously like a cheap Halloween costume...", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1709, + "name": "Johanhus Ulsbrecht", + "examine": "The leader of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1710, + "name": "H.A.M. Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 12, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1711, + "name": "H.A.M. Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 18, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1712, + "name": "H.A.M. Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1713, + "name": "H.A.M. Deacon", + "examine": "A deacon in the Humans Against Monsters group. A rather enthusiastic chap.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1714, + "name": "H.A.M. Member", + "examine": "A member of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1715, + "name": "H.A.M. Member", + "examine": "A member of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1716, + "name": "H.A.M. Member", + "examine": "A member of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1717, + "name": "H.A.M. Member", + "examine": "A member of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1718, + "name": "Jimmy the Chisel", + "examine": "A young man with a dark and mysterious past.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1719, + "name": "Tree", + "examine": "Aww.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1720, + "name": "Tree", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1721, + "name": "Tree", + "examine": "Aww.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1722, + "name": "Dead tree", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1723, + "name": "Dead tree", + "examine": "Aww.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1724, + "name": "Dead tree", + "examine": "Aww.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1725, + "name": "Dead tree", + "examine": "Aww.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1726, + "name": "Dead tree", + "examine": "Aww.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1727, + "name": "Dead tree", + "examine": "Assistant teacher of the Dorgesh-Kaan nursery school.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1728, + "name": "Dead tree", + "examine": "A scientist exploring the ways of magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1729, + "name": "Dead tree", + "examine": "A scientist who explores the ways of magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1730, + "name": "Dead tree", + "examine": "What is he plotting this time?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1731, + "name": "Dead tree", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1732, + "name": "Null", + "examine": "Where did his boot go?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1733, + "name": "Dramen tree", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1734, + "name": "Magic tree", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1735, + "name": "Maple tree", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1736, + "name": "Willow", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1737, + "name": "Willow", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1738, + "name": "Willow", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1739, + "name": "Oak", + "examine": "Manages the mill.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1740, + "name": "Yew", + "examine": "One of Sigmund\u0027s elite guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1741, + "name": "Evergreen", + "examine": "One of Sigmund\u0027s elite guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1742, + "name": "Evergreen", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1743, + "name": "Evergreen", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1744, + "name": "Tree", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1745, + "name": "Dead tree", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1746, + "name": "Achey Tree", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1747, + "name": "Tree", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1748, + "name": "Tree", + "examine": "A member of Sigmund\u0027s H.A.M. splinter group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1749, + "name": "Hollow tree", + "examine": "Good at shorthand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1750, + "name": "Hollow tree", + "examine": "He sells \u0027exotic\u0027 ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1751, + "name": "Crow", + "examine": "A giant raptor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1752, + "name": "Crow", + "examine": "These gnomes know how to get around!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1753, + "name": "Crow", + "examine": "These gnomes know how to get around!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1754, + "name": "Crow", + "examine": "A farmer\u0027s enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1755, + "name": "Crow", + "examine": "A farmer\u0027s enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1756, + "name": "Crow", + "examine": "A farmer\u0027s enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1757, + "name": "Farmer", + "examine": "He grows the crops in this area.", + "respawn": 10, + "combat": 7, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1758, + "name": "Farmer", + "examine": "He grows the crops in this area.", + "respawn": 10, + "combat": 7, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1759, + "name": "Farmer", + "examine": "Farming.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1760, + "name": "Farmer", + "examine": "Farming.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1761, + "name": "Farmer", + "examine": "Farming the wheat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1762, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1763, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1764, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1765, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1766, + "name": "Cow calf", + "examine": "Prelude to a steak.", + "respawn": 10, + "combat": 2, + "hitpoints": 6, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1767, + "name": "Cow", + "examine": "Where beef comes from.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1768, + "name": "Cow calf", + "examine": "Young and tender; nearly ready for the slaughter.", + "respawn": 10, + "combat": 2, + "hitpoints": 6, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1769, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1770, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1771, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1772, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1773, + "name": "Goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1774, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 0, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1775, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 0, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1776, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 0, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1777, + "name": "Ilfeen", + "examine": "A female elf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1778, + "name": "William", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1779, + "name": "Ian", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1780, + "name": "Larry", + "examine": "A not-so-brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1781, + "name": "Darren", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1782, + "name": "Edward", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1783, + "name": "Richard", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1784, + "name": "Neil", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1785, + "name": "Edmond", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1786, + "name": "Simon", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1787, + "name": "Sam", + "examine": "A very brave merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1788, + "name": "Lumdo", + "examine": "A seasoned looking Gnome foot soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1789, + "name": "Bunkwicket", + "examine": "A Gnome soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1790, + "name": "Waymottin", + "examine": "A Gnome soldier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1791, + "name": "Jungle Tree", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1792, + "name": "Jungle Tree", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1793, + "name": "Tassie Slipcast", + "examine": "A hard-working potter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1794, + "name": "Hammerspike Stoutbeard", + "examine": "He looks quite independent in an aggressive and business like way.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1795, + "name": "Dwarf gang member", + "examine": "A short stout menacing fellow.", + "respawn": 10, + "combat": 44, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1796, + "name": "Dwarf gang member", + "examine": "A short stout menacing fellow.", + "respawn": 10, + "combat": 48, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1797, + "name": "Dwarf gang member", + "examine": "A short stout menacing fellow.", + "respawn": 10, + "combat": 49, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1798, + "name": "Phantuwti Fanstuwi Farsight", + "examine": "A slightly more eccentric seer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1799, + "name": "Tindel Marchant", + "examine": "He seems quietly enthusiastic about his profession.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1800, + "name": "Gnormadium Avlafrim", + "examine": "Enthusiastic gnome construction engineer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1801, + "name": "Petra Fiyed", + "examine": "An energetic female adventuress.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1802, + "name": "Slagilith", + "examine": "This monster totally rocks!", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1803, + "name": "Rock pile", + "examine": "A pile of boulders.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1804, + "name": "Slagilith", + "examine": "This monster totally rocks!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1805, + "name": "Guard", + "examine": "He seems to be guarding a pile of rocks. Interesting job.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1806, + "name": "Guard", + "examine": "He seems to be guarding a single rock. Interesting job.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1807, + "name": "Hamal the Chieftain", + "examine": "The Chieftain of the mountain camp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1808, + "name": "Ragnar", + "examine": "He looks a little lost, himself.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1809, + "name": "Svidi", + "examine": "Is he walking around in circles?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1810, + "name": "Jokul", + "examine": "He seems to be minding the goats.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1811, + "name": "Null", + "examine": "Is that a bear... or a man?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1812, + "name": "The Kendal", + "examine": "Is that a bear... or a man?", + "respawn": 10, + "combat": 70, + "hitpoints": 63, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 81, + "defenceMelee": 81, + "defenceRange": 81, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1813, + "name": "The Kendal", + "examine": "Is that a bear... or a man?", + "respawn": 10, + "combat": 70, + "hitpoints": 63, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 81, + "defenceMelee": 81, + "defenceRange": 81, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1814, + "name": "Camp dweller", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 31, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1815, + "name": "Camp dweller", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 31, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1816, + "name": "Camp dweller", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 31, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1817, + "name": "Camp dweller", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 31, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1818, + "name": "Camp dweller", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 25, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1819, + "name": "Mountain Goat", + "examine": "Looks a little underfed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1820, + "name": "Mountain Goat", + "examine": "This goat belongs to the mountain camp people.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1821, + "name": "Bald Headed Eagle", + "examine": "A big birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1822, + "name": "Cave goblin", + "examine": "A goblin with big bulging eyes.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1823, + "name": "Cave goblin", + "examine": "A goblin with big bulging eyes.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1824, + "name": "Cave goblin", + "examine": "A goblin with big bulging eyes.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1825, + "name": "Cave goblin", + "examine": "A goblin with big bulging eyes.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1826, + "name": "Hole in the wall", + "examine": "A human zombie.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1827, + "name": "Wall beast", + "examine": "Flies like a rock.", + "respawn": 10, + "combat": 49, + "hitpoints": 105, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 136, + "defenceMelee": 136, + "defenceRange": 136, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1828, + "name": "Giant frog", + "examine": "It didn\u0027t get that big eating flies.", + "respawn": 10, + "combat": 99, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1829, + "name": "Big frog", + "examine": "It didn\u0027t get that big eating flies.", + "respawn": 10, + "combat": 24, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1830, + "name": "Frog", + "examine": "It eats flies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1831, + "name": "Cave slime", + "examine": "A foul-smelling blob of protoplasm.", + "respawn": 10, + "combat": 23, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": true + }, + { + "id": 1832, + "name": "Cave bug", + "examine": "A nasty crawling critter.", + "respawn": 10, + "combat": 6, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1833, + "name": "Cave bug larva", + "examine": "A little, slimy beetle-thing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1834, + "name": "Candle seller", + "examine": "Has an odd smell about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1835, + "name": "Easter Bunny", + "examine": "He\u0027s lucky it isn\u0027t rabbit season.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1836, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1837, + "name": "Dondakan the Dwarf", + "examine": "A short, old and gold loving guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1838, + "name": "Dondakan the Dwarf", + "examine": "A short, old and gold loving guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1839, + "name": "Dondakan the Dwarf", + "examine": "A short, old and gold loving guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1840, + "name": "Dwarven Engineer", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1841, + "name": "Rolad", + "examine": "He looks a little absent-minded.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1842, + "name": "Khorvak, a dwarven engineer", + "examine": "The little guy is having trouble standing up right.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1843, + "name": "Dwarven Ferryman", + "examine": "It\u0027s probably you who will be paying the ferryman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1844, + "name": "Dwarven Ferryman", + "examine": "It\u0027s probably you who will be paying the ferryman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1845, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1846, + "name": "Dwarven Boatman", + "examine": "He seems to be in charge of the ship on the river.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1847, + "name": "Miodvetnir", + "examine": "He seems deeply engaged in conversation with his fellow boatmen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1848, + "name": "Dernu", + "examine": "He seems deeply engaged in conversation with his fellow boatmen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1849, + "name": "Derni", + "examine": "He seems deeply engaged in conversation with his fellow boatmen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1850, + "name": "Arzinian Avatar of Strength", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing strength.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1851, + "name": "Arzinian Avatar of Strength", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing strength.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1852, + "name": "Arzinian Avatar of Strength", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing strength.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1853, + "name": "Arzinian Avatar of Ranging", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing ranging.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1854, + "name": "Arzinian Avatar of Ranging", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing ranging.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1855, + "name": "Arzinian Avatar of Ranging", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing ranging.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1856, + "name": "Arzinian Avatar of Magic", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1857, + "name": "Arzinian Avatar of Magic", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing magic.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1858, + "name": "Arzinian Avatar of Magic", + "examine": "It is the avatar of the Arzinian Being of Bordanzan, representing magic.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1859, + "name": "Arzinian Being of Bordanzan", + "examine": "It\u0027s the Arzinian Being, whatever that is, that comes from Bordanzan, wherever that is.", + "respawn": 10, + "combat": 781, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1860, + "name": "Brian", + "examine": "He sells ranged equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1861, + "name": "Ranged combat tutor", + "examine": "Nemarti, ready to teach you about Ranged.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1862, + "name": "Ali Morrisane", + "examine": "A bazaar merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1863, + "name": "Drunken Ali", + "examine": "Drunk man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1864, + "name": "Ali The barman", + "examine": "A hassled looking barman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1865, + "name": "Ali the Kebab seller", + "examine": "A kebab seller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1866, + "name": "Market seller", + "examine": "A market stall keeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1867, + "name": "Ali the Camel Man", + "examine": "Ali the discount animal seller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1868, + "name": "Street urchin", + "examine": "A mischievous looking child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1869, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1870, + "name": "Ali the Mayor", + "examine": "Mayor of Pollnivneach.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1871, + "name": "Ali the Hag", + "examine": "An old Hag named Alice.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1872, + "name": "Ali the Snake Charmer", + "examine": "A snake charmer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1873, + "name": "Ali the Camel", + "examine": "A foul tempered ugly lumpy yellow horse prone to spitting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1874, + "name": "Desert snake", + "examine": "A slithering serpent.", + "respawn": 10, + "combat": 5, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1875, + "name": "Snake", + "examine": "A toothless old Snake.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1876, + "name": "Null", + "examine": "A market stall keeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1877, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1878, + "name": "Bandit Leader", + "examine": "Leads the Bandits.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1879, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 56, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1880, + "name": "Bandit", + "examine": "A vicious thief.", + "respawn": 10, + "combat": 56, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1881, + "name": "Bandit", + "examine": "A vicious thief.", + "respawn": 10, + "combat": 56, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1882, + "name": "Null", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 41, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1883, + "name": "Bandit", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 41, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1884, + "name": "Bandit", + "examine": "A well dressed thief.", + "respawn": 10, + "combat": 41, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1885, + "name": "Bandit champion", + "examine": "A very tough-looking bandit.", + "respawn": 10, + "combat": 70, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1886, + "name": "Cowardly Bandit", + "examine": "Probably the weakest bandit in the world ....ever.", + "respawn": 10, + "combat": 56, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1887, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1888, + "name": "Villager", + "examine": "An old male villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1889, + "name": "Villager", + "examine": "An old male villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1890, + "name": "Villager", + "examine": "An old male villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1891, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1892, + "name": "Villager", + "examine": "Male desert villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1893, + "name": "Villager", + "examine": "Male desert villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1894, + "name": "Villager", + "examine": "Male desert villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1895, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1896, + "name": "Villager", + "examine": "Female desert villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1897, + "name": "Villager", + "examine": "Female desert villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1898, + "name": "Villager", + "examine": "Female desert villager.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1899, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1900, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1901, + "name": "Menaphite Leader", + "examine": "Leader of the Menaphites.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1902, + "name": "Ali the Operator", + "examine": "Smooth operator.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1903, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 55, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1904, + "name": "Menaphite Thug", + "examine": "Menaphite thug.", + "respawn": 10, + "combat": 55, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1905, + "name": "Menaphite Thug", + "examine": "Menaphite thug.", + "respawn": 10, + "combat": 55, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 1906, + "name": "Tough Guy", + "examine": "Tough looking Menaphite.", + "respawn": 10, + "combat": 75, + "hitpoints": 75, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1907, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1908, + "name": "Broken clay golem", + "examine": "An animated clay statue with a lot of clay missing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1909, + "name": "Damaged clay golem", + "examine": "An animated clay statue with some clay missing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1910, + "name": "Clay golem", + "examine": "An animated clay statue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1911, + "name": "Desert Phoenix", + "examine": "Definitely not a chicken.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1912, + "name": "Elissa", + "examine": "An old archaeologist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1913, + "name": "Kamil", + "examine": "Ice warrior.", + "respawn": 10, + "combat": 154, + "hitpoints": 130, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 169, + "defenceMelee": 169, + "defenceRange": 169, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1914, + "name": "Dessous", + "examine": "Vampire warrior of Zamorak.", + "respawn": 10, + "combat": 139, + "hitpoints": 200, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 1915, + "name": "Dessous", + "examine": "Vampire warrior of Zamorak.", + "respawn": 10, + "combat": 139, + "hitpoints": 200, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 1916, + "name": "Ruantun", + "examine": "Luckily, I can\u0027t see much of his face.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1917, + "name": "Bandit shopkeeper", + "examine": "I guess he sells what he steals...?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1918, + "name": "Archaeologist", + "examine": "Hardened by the cutthroat world of archaeology.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1919, + "name": "Stranger", + "examine": "Very mysterious looking...", + "respawn": 10, + "combat": 95, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1920, + "name": "Malak", + "examine": "One of Morytania\u0027s vampiric nobility.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1921, + "name": "Bartender", + "examine": "Looks like a rough-and-ready type.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1922, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1923, + "name": "Eblis", + "examine": "A very distinguished looking man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1924, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1925, + "name": "Eblis", + "examine": "A very distinguished looking man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1926, + "name": "Bandit", + "examine": "A tough-looking criminal.", + "respawn": 10, + "combat": 74, + "hitpoints": 65, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 84, + "defenceMelee": 84, + "defenceRange": 84, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1927, + "name": "Bandit", + "examine": "A tough-looking criminal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1928, + "name": "Bandit", + "examine": "A tough-looking criminal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1929, + "name": "Bandit", + "examine": "A tough-looking criminal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1930, + "name": "Bandit", + "examine": "A tough-looking criminal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1931, + "name": "Bandit", + "examine": "A tough-looking criminal.", + "respawn": 10, + "combat": 57, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1932, + "name": "Null", + "examine": "A little ice troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1933, + "name": "Troll child", + "examine": "A little ice troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1934, + "name": "Troll child", + "examine": "A little ice troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1935, + "name": "Ice troll", + "examine": "An ice troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1936, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 124, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1937, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 123, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1938, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 120, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1939, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 121, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1940, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 120, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1941, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 120, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1942, + "name": "Ice troll", + "examine": "Brrrrr...he must be cold!", + "respawn": 10, + "combat": 121, + "hitpoints": 86, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 111, + "defenceMelee": 111, + "defenceRange": 111, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1943, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 34, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1944, + "name": "Ice block", + "examine": "A troll frozen in a block of ice.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1945, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 34, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1946, + "name": "Ice block", + "examine": "A troll frozen in a block of ice.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1947, + "name": "Null", + "examine": "An ice troll.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1948, + "name": "Troll father", + "examine": "An ice troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1949, + "name": "Null", + "examine": "An ice troll.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1950, + "name": "Troll mother", + "examine": "An ice troll.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1951, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1952, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1953, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1954, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1955, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1956, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 132, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1957, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1958, + "name": "Mummy", + "examine": "Highly flammable!", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1959, + "name": "Mummy", + "examine": "Highly flammable!", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1960, + "name": "Mummy ashes", + "examine": "A tightly-wrapped monster.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1961, + "name": "Mummy", + "examine": "A tightly-wrapped monster.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1962, + "name": "Mummy", + "examine": "Spooky, bandaged dead dude.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1963, + "name": "Mummy", + "examine": "A victim of poor first aid.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1964, + "name": "Mummy", + "examine": "But who\u0027s the daddy?", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1965, + "name": "Mummy", + "examine": "A tightly-wrapped monster.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1966, + "name": "Mummy", + "examine": "Spooky, bandaged dead dude.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1967, + "name": "Mummy", + "examine": "A victim of poor first aid.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1968, + "name": "Mummy", + "examine": "But who\u0027s the daddy?", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1969, + "name": "Scarabs", + "examine": "I think they\u0027re some kind of beetle...", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1970, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1971, + "name": "Azzanadra", + "examine": "A Mahjarrat warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1972, + "name": "Rasolo", + "examine": "A travelling merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1973, + "name": "Giant skeleton", + "examine": "A giant skeleton.", + "respawn": 10, + "combat": 80, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1974, + "name": "Damis", + "examine": "The warrior of darkness.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1975, + "name": "Damis", + "examine": "The warrior of darkness.", + "respawn": 10, + "combat": 174, + "hitpoints": 200, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1976, + "name": "Shadow Hound", + "examine": "Looks hungry!", + "respawn": 10, + "combat": 63, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1977, + "name": "Fareed", + "examine": "Zamorak\u0027s warrior of fire.", + "respawn": 10, + "combat": 167, + "hitpoints": 130, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 169, + "defenceMelee": 169, + "defenceRange": 169, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1978, + "name": "Slave", + "examine": "A malnourished worker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1979, + "name": "Slave", + "examine": "A malnourished worker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1980, + "name": "Embalmer", + "examine": "A strange-smelling merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1981, + "name": "Carpenter", + "examine": "A block of a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1982, + "name": "Raetul", + "examine": "A dedicated follower of fashion.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1983, + "name": "Siamun", + "examine": "I wonder if they dislike me examining them?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1984, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1985, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1986, + "name": "High Priest", + "examine": "A very priestly man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1987, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1988, + "name": "Priest", + "examine": "Preach my brother!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1989, + "name": "Priest", + "examine": "Priestly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1990, + "name": "Sphinx", + "examine": "An awe inspiring combination of a lady, a lion and an eagle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1991, + "name": "Possessed Priest", + "examine": "He has a dangerous glint in his eye.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1992, + "name": "Neite", + "examine": "A graceful feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1993, + "name": "Crocodile", + "examine": "Never smile at a...", + "respawn": 10, + "combat": 63, + "hitpoints": 62, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1994, + "name": "Jackal", + "examine": "He has had his day.", + "respawn": 10, + "combat": 21, + "hitpoints": 27, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 35, + "defenceMelee": 35, + "defenceRange": 35, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1995, + "name": "Locust", + "examine": "Obnoxious, overgrown insect.", + "respawn": 10, + "combat": 18, + "hitpoints": 28, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 36, + "defenceMelee": 36, + "defenceRange": 36, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1996, + "name": "Vulture", + "examine": "If you see them circling...run.", + "respawn": 10, + "combat": 31, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1997, + "name": "Plague frog", + "examine": "A very smelly frog.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 1998, + "name": "Plague cow", + "examine": "I might give the burgers a miss in this town.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 1999, + "name": "Plague cow", + "examine": "I don\u0027t fancy eating any part of this.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2000, + "name": "Plague cow", + "examine": "It\u0027s a sick-looking cow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2001, + "name": "Scarab swarm", + "examine": "I think they\u0027re some kind of beetle.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2002, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2003, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2004, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2005, + "name": "Wanderer", + "examine": "A red-haired woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2006, + "name": "Wanderer", + "examine": "A red-haired woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2007, + "name": "Het", + "examine": "Guardian of the liver. Guess he doesn\u0027t drink.", + "respawn": 10, + "combat": 81, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2008, + "name": "Apmeken", + "examine": "Body of a woman, face of a monkey.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2009, + "name": "Scabaras", + "examine": "A scarab headed demi-god.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2010, + "name": "Crondis", + "examine": "Body of a woman, head of a crocodile.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2011, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2012, + "name": "Icthlarin", + "examine": "A jackal headed demi-god.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2013, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2014, + "name": "Klenter", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2015, + "name": "Mummy", + "examine": "This mummy looks like it means business!", + "respawn": 10, + "combat": 84, + "hitpoints": 91, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 118, + "defenceMelee": 118, + "defenceRange": 118, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2016, + "name": "Mummy", + "examine": "An irate warrior-mummy.", + "respawn": 10, + "combat": 84, + "hitpoints": 91, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 118, + "defenceMelee": 118, + "defenceRange": 118, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2017, + "name": "Mummy", + "examine": "This mummy looks like it means business!", + "respawn": 10, + "combat": 84, + "hitpoints": 91, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 118, + "defenceMelee": 118, + "defenceRange": 118, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2018, + "name": "Mummy", + "examine": "An irate mummy.", + "respawn": 10, + "combat": 84, + "hitpoints": 91, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 118, + "defenceMelee": 118, + "defenceRange": 118, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2019, + "name": "Mummy", + "examine": "A wizened old warrior.", + "respawn": 10, + "combat": 84, + "hitpoints": 91, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 118, + "defenceMelee": 118, + "defenceRange": 118, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2020, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2021, + "name": "Light creature", + "examine": "A shimmering creature of blue light.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2022, + "name": "Light creature", + "examine": "That one is carrying someone!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2023, + "name": "Juna", + "examine": "An ancient giant serpent.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2024, + "name": "Strange Old Man", + "examine": "Wonder how long he\u0027s been here...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2025, + "name": "Ahrim the Blighted", + "examine": "A vengeful spirit corrupted by dark magic.", + "respawn": 10, + "combat": 98, + "hitpoints": 100, + "maxHit": 0, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 429, + "defenceAnim": 430, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 50, + "defenceRange": -20, + "defenceMage": 50, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2026, + "name": "Dharok the Wretched", + "examine": "A vengeful spirit corrupted by dark magic.", + "respawn": 10, + "combat": 115, + "hitpoints": 100, + "maxHit": 0, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2067, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": -20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2027, + "name": "Guthan the Infested", + "examine": "A vengeful spirit corrupted by dark magic.", + "respawn": 10, + "combat": 115, + "hitpoints": 100, + "maxHit": 30, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": -20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2028, + "name": "Karil the Tainted", + "examine": "A vengeful spirit corrupted by dark magic.", + "respawn": 10, + "combat": 98, + "hitpoints": 100, + "maxHit": 20, + "size": 1, + "attackSpeed": 1800, + "attackAnim": 2075, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 100, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2029, + "name": "Torag the Corrupted", + "examine": "A vengeful spirit corrupted by dark magic.", + "respawn": 10, + "combat": 115, + "hitpoints": 100, + "maxHit": 30, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": -20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2030, + "name": "Verac the Defiled", + "examine": "A vengeful spirit corrupted by dark magic.", + "respawn": 10, + "combat": 115, + "hitpoints": 100, + "maxHit": 30, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2062, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": -20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2031, + "name": "Bloodworm", + "examine": "I think I should keep my distance...", + "respawn": 10, + "combat": 52, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2032, + "name": "Crypt rat", + "examine": "A nasty little rodent.", + "respawn": 10, + "combat": 43, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2033, + "name": "Giant crypt rat", + "examine": "A nasty overgrown rodent.", + "respawn": 10, + "combat": 76, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2034, + "name": "Crypt spider", + "examine": "Incey wincey.", + "respawn": 10, + "combat": 56, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2035, + "name": "Giant crypt spider", + "examine": "Not very incey wincey.", + "respawn": 10, + "combat": 79, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2036, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 77, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2037, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 77, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2038, + "name": "Grish", + "examine": "An ogre shaman", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2039, + "name": "Uglug Nar", + "examine": "An ogre shaman", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2040, + "name": "Pilg", + "examine": "They\u0027re done for!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2041, + "name": "Grug", + "examine": "They\u0027re done for!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2042, + "name": "Ogre guard", + "examine": "An ogre that guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2043, + "name": "Ogre guard", + "examine": "An ogre that guards.", + "respawn": 10, + "combat": 76, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2044, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2045, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2046, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2047, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2048, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2049, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2050, + "name": "Skogre", + "examine": "An undead skeletal ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2051, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2052, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2053, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2054, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2055, + "name": "Zogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2056, + "name": "Skogre", + "examine": "A partially decomposing zombie ogre.", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2057, + "name": "Skogre", + "examine": "It\u0027s falling apart!", + "respawn": 10, + "combat": 44, + "hitpoints": 72, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 93, + "defenceMelee": 93, + "defenceRange": 93, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2058, + "name": "Zombie", + "examine": "What could be hiding in that crack in the wall?", + "respawn": 10, + "combat": 39, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2059, + "name": "Zavistic Rarve", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2060, + "name": "Slash Bash", + "examine": "A powerful looking Zogre.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 35, + "size": 3, + "attackSpeed": 7500, + "attackAnim": 2102, + "defenceAnim": 2090, + "deathAnim": 2088, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2061, + "name": "Sithik Ints", + "examine": "A sick, frail old man.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2062, + "name": "Sithik Ints", + "examine": "Is it a man or is it a monster?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2063, + "name": "Gargh", + "examine": "An ogre hunting chompies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2064, + "name": "Scarg", + "examine": "An ogre hunting chompies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2065, + "name": "Gruh", + "examine": "An ogre hunting chompies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2066, + "name": "Irwin Feaselbaum", + "examine": "A young assistant necromancer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2067, + "name": "Fishing spot", + "examine": "I can see fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2068, + "name": "Fishing spot", + "examine": "I can see fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2069, + "name": "Cave goblin miner", + "examine": "This one is slacking off.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2070, + "name": "Cave goblin miner", + "examine": "This one is slacking off.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2071, + "name": "Cave goblin miner", + "examine": "This one is slacking off.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2072, + "name": "Cave goblin miner", + "examine": "This one is slacking off.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2073, + "name": "Cave goblin guard", + "examine": "He protects the miners.", + "respawn": 10, + "combat": 26, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2074, + "name": "Cave goblin guard", + "examine": "He protects the miners.", + "respawn": 10, + "combat": 24, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2075, + "name": "Cave goblin miner", + "examine": "He\u0027s working away.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2076, + "name": "Cave goblin miner", + "examine": "He\u0027s working away.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2077, + "name": "Cave goblin miner", + "examine": "He\u0027s working away.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2078, + "name": "Cave goblin miner", + "examine": "He\u0027s working away.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2079, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2080, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2081, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2082, + "name": "Sigmund", + "examine": "Advisor to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2083, + "name": "Sigmund", + "examine": "Former advisor to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2084, + "name": "Mistag", + "examine": "He looks like he\u0027s in charge of the miners.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2085, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2086, + "name": "Kazgar", + "examine": "He\u0027s standing guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2087, + "name": "Ur-tag", + "examine": "The ruler of the Dorgeshuun", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2088, + "name": "Duke Horacio", + "examine": "Duke Horacio of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2089, + "name": "Mistag", + "examine": "He looks like he\u0027s in charge of the miners.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2090, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2091, + "name": "Secretary", + "examine": "Task master.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2092, + "name": "Purple Pewter Secretary", + "examine": "The head secretary of the Purple Pewter mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2093, + "name": "Yellow Fortune Secretary", + "examine": "The head secretary of the Yellow Fortune mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2094, + "name": "Blue Opal Secretary", + "examine": "The head secretary of the Blue Opal mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2095, + "name": "Green Gemstone Secretary", + "examine": "The head secretary of the Green Gemstone mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2096, + "name": "White Chisel Secretary", + "examine": "The head secretary of the White Chisel mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2097, + "name": "Silver Cog Secretary", + "examine": "The head secretary of the Silver Cog mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2098, + "name": "Brown Engine Secretary", + "examine": "The head secretary of the Brown Engine mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2099, + "name": "Red Axe Secretary", + "examine": "The head secretary of the Red Axe mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2100, + "name": "Purple Pewter Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2101, + "name": "Blue Opal Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2102, + "name": "Yellow Fortune Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2103, + "name": "Green Gemstone Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2104, + "name": "White Chisel Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2105, + "name": "Silver Cog Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2106, + "name": "Brown Engine Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2107, + "name": "Red Axe Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2108, + "name": "Red Axe Cat", + "examine": "The cat belongs to the director of the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2109, + "name": "Trader", + "examine": "A trader for the Purple Pewter mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2110, + "name": "Trader", + "examine": "A trader for the Purple Pewter mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2111, + "name": "Trader", + "examine": "A trader for the Blue Opal mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2112, + "name": "Trader", + "examine": "A trader for the Blue Opal mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2113, + "name": "Trader", + "examine": "A trader for the Yellow Fortune mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2114, + "name": "Trader", + "examine": "A trader for the Yellow Fortune mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2115, + "name": "Trader", + "examine": "A trader for the Green Gemstone mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2116, + "name": "Trader", + "examine": "A trader for the Green Gemstone mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2117, + "name": "Trader", + "examine": "A trader for the White Chisel mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2118, + "name": "Trader", + "examine": "A trader for the White Chisel mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2119, + "name": "Trader", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2120, + "name": "Trader", + "examine": "A trader for the Silver Cog mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2121, + "name": "Trader", + "examine": "A trader for the Brown Engine mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2122, + "name": "Trader", + "examine": "A trader for the Brown Engine mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2123, + "name": "Null", + "examine": "A trader for the Red Axe mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2124, + "name": "Trader", + "examine": "A trader for the Red Axe mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2125, + "name": "Null", + "examine": "A trader for the Red Axe mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2126, + "name": "Trader", + "examine": "A trader for the Red Axe mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2127, + "name": "Trade Referee", + "examine": "He is regulating the flow of goods on the trade floor and maintaining order.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2128, + "name": "Supreme Commander", + "examine": "He is the Supreme Commander of all regiments of the Black Guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2129, + "name": "Commander Veldaban", + "examine": "Veldaban, Commander of the Black Guard in Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2130, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 48, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2131, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 48, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2132, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 48, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2133, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 48, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2134, + "name": "Black Guard Berserker", + "examine": "An elite member of the Black Guard.", + "respawn": 10, + "combat": 66, + "hitpoints": 51, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 66, + "defenceMelee": 66, + "defenceRange": 66, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2135, + "name": "Black Guard Berserker", + "examine": "An elite member of the Black Guard.", + "respawn": 10, + "combat": 66, + "hitpoints": 51, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 66, + "defenceMelee": 66, + "defenceRange": 66, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2136, + "name": "Black Guard Berserker", + "examine": "An elite member of the Black Guard.", + "respawn": 10, + "combat": 66, + "hitpoints": 51, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 66, + "defenceMelee": 66, + "defenceRange": 66, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2137, + "name": "Gnome emissary", + "examine": "Apparantly negotiating some business with the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2138, + "name": "Gnome traveller", + "examine": "A gnome traveller, visiting Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2139, + "name": "Gnome traveller", + "examine": "A gnome traveller, visiting Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2140, + "name": "Dromund\u0027s cat", + "examine": "Very protective of his master... and his property.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2141, + "name": "Blasidar the sculptor", + "examine": "Makes sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2142, + "name": "Null", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2143, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2144, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2145, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2146, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2147, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2148, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2149, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2150, + "name": "Riki the sculptor\u0027s model", + "examine": "Models for sculptures.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2151, + "name": "Vigr", + "examine": "Proprietor of Vigr\u0027s Warhammers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2152, + "name": "Santiri", + "examine": "Proprietor of the Quality Weapons Shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2153, + "name": "Saro", + "examine": "Proprietor of the Quality Armour Shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2154, + "name": "Gunslik", + "examine": "Proprietor of Gunslik\u0027s Assorted Items.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2155, + "name": "Wemund", + "examine": "Looks like some kind of engineer or mechanic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2156, + "name": "Randivor", + "examine": "He\u0027s selling his bread on the market here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2157, + "name": "Hervi", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2158, + "name": "Nolar", + "examine": "A crafty dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2159, + "name": "Gulldamar", + "examine": "He has lots of silver on display. And only silver.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2160, + "name": "Tati", + "examine": "An old mining dwarf, now he sells pickaxes and generally acts grumpy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2161, + "name": "Agmundi", + "examine": "She seems to be doing rather well for herself, selling clothes in a palace shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2162, + "name": "Vermundi", + "examine": "A rather poor looking little dwarf, selling her clothes on the market.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2163, + "name": "Banker", + "examine": "A rather personable banker lady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2164, + "name": "Banker", + "examine": "A rather serious old fella.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2165, + "name": "Librarian", + "examine": "He takes care of the library and its many books.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2166, + "name": "Assistant", + "examine": "Library assistant, to be exact.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2167, + "name": "Customer", + "examine": "A customer looking for books.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2168, + "name": "Customer", + "examine": "Looks like a human traveler visiting the library.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2169, + "name": "Dromund", + "examine": "What an eccentric little fellow!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2170, + "name": "Rind the gardener", + "examine": "He tends to the plants in the palace garden.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2171, + "name": "Factory Manager", + "examine": "Looks after the factory.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2172, + "name": "Factory Worker", + "examine": "Works hard at whatever it is he does.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2173, + "name": "Factory Worker", + "examine": "Works hard at whatever it is he does.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2174, + "name": "Factory Worker", + "examine": "Works hard at whatever it is he does.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2175, + "name": "Factory Worker", + "examine": "Works hard at whatever it is he does.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2176, + "name": "Inn Keeper", + "examine": "A keeper of the Inn.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2177, + "name": "Inn Keeper", + "examine": "A rich landlord, fat and jolly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2178, + "name": "Barmaid", + "examine": "These Dwarf ladies are so attractive!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2179, + "name": "Barman", + "examine": "Makes a living off his tips I\u0027m sure.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2180, + "name": "Cart conductor", + "examine": "He makes sure the carts don\u0027t run anyone over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2181, + "name": "Cart conductor", + "examine": "He makes sure the carts don\u0027t run anyone over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2182, + "name": "Cart conductor", + "examine": "He makes sure the carts don\u0027t run anyone over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2183, + "name": "Cart conductor", + "examine": "He makes sure the carts don\u0027t run anyone over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2184, + "name": "Cart conductor", + "examine": "He makes sure the carts don\u0027t run anyone over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2185, + "name": "Cart conductor", + "examine": "Remember don\u0027t drink and ride in mine carts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2186, + "name": "Cart conductor", + "examine": "Keeps the line clear of traffic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2187, + "name": "Rowdy dwarf", + "examine": "A loud, drunk and generally obnoxious dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2188, + "name": "Hegir", + "examine": "A bickering old dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2189, + "name": "Haera", + "examine": "A bickering old dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2190, + "name": "Runvastr", + "examine": "A sad old dwarf living in a sad old home.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2191, + "name": "Sune", + "examine": "He seems to always be busy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2192, + "name": "Bentamir", + "examine": "This dwarf doesn\u0027t seem to be very well off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2193, + "name": "Ulifed", + "examine": "A dwarf minding his own business.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2194, + "name": "Reinald", + "examine": "A seller of fine wrist-wear...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2195, + "name": "Karl", + "examine": "A short, merry guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2196, + "name": "Gauss", + "examine": "A beer drinking dwarf that is, for once, not totally drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2197, + "name": "Myndill", + "examine": "A dwarf, wandering the streets of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2198, + "name": "Kjut", + "examine": "His kebabs certainly smell delicious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2199, + "name": "Tombar", + "examine": "He seems very tall. For a dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2200, + "name": "Odmar", + "examine": "A dwarf, wandering around Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2201, + "name": "Audmann", + "examine": "He seems to be very well off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2202, + "name": "Null", + "examine": "He\u0027s had a fair bit to drink...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2203, + "name": "Drunken Dwarf", + "examine": "He\u0027s had a fair bit to drink...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2204, + "name": "Drunken Dwarf", + "examine": "He\u0027s had a fair bit to drink...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2205, + "name": "Dwarven Boatman", + "examine": "You cannot see his ship, but presumably he has one.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2206, + "name": "Dwarven Boatman", + "examine": "His ship miraculously survived the crash into the statue earlier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2207, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2208, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2209, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2210, + "name": "Dwarven Miner", + "examine": "He\u0027s delivered his ores.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2211, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2212, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2213, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2214, + "name": "Dwarven Miner", + "examine": "He\u0027s delivered his ores.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2215, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2216, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2217, + "name": "Dwarven Miner", + "examine": "He carries a heavy load.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2218, + "name": "Dwarven Miner", + "examine": "He\u0027s delivered his ores.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2219, + "name": "Purple Pewter Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2220, + "name": "Purple Pewter Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2221, + "name": "Blue Opal Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2222, + "name": "Yellow Fortune Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2223, + "name": "Green Gemstone Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2224, + "name": "White Chisel Director", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2225, + "name": "Silver Cog Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2226, + "name": "Brown Engine Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2227, + "name": "Red Axe Director", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2228, + "name": "Commander Veldaban", + "examine": "Veldaban, Commander of the Black Guard in Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2229, + "name": "Red Axe Cat", + "examine": "The cat belongs to the director of the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2230, + "name": "Red Axe Cat", + "examine": "The cat belongs to the director of the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2231, + "name": "Null", + "examine": "A dwarven enforcer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2232, + "name": "Black Guard Berserker", + "examine": "A dwarven enforcer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2233, + "name": "Olivia", + "examine": "She\u0027s a seed merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2234, + "name": "Master Farmer", + "examine": "A master at farming.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2235, + "name": "Master Farmer", + "examine": "A master at farming.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2236, + "name": "Market Guard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 28, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2237, + "name": "Gee", + "examine": "A local farmer. He may be able to provide some useful information.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2238, + "name": "Donie", + "examine": "A local farmer. She may be able to provide some useful information.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2239, + "name": "Pig", + "examine": "Swine.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2240, + "name": "Pig", + "examine": "Porker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2241, + "name": "Piglet", + "examine": "Hog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2242, + "name": "Piglet", + "examine": "Porcine.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2243, + "name": "Piglet", + "examine": "I shall call him, Mini Pig.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2244, + "name": " Varrock Guide", + "examine": "He provides new players with useful information.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2245, + "name": "Khazard trooper", + "examine": "It\u0027s one of General Khazard\u0027s warriors.", + "respawn": 10, + "combat": 19, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2246, + "name": "Khazard trooper", + "examine": "It\u0027s one of General Khazard\u0027s warriors.", + "respawn": 10, + "combat": 19, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2247, + "name": "Gnome troop", + "examine": "It\u0027s a tree gnome trooper.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2248, + "name": "Gnome troop", + "examine": "It\u0027s a tree gnome trooper.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2249, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 3, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2250, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2251, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 3, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2252, + "name": "Mounted terrorbird gnome", + "examine": "A farmer\u0027s enemy.", + "respawn": 10, + "combat": 49, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2253, + "name": "Wise Old Man", + "examine": "A venerable and rich sage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2254, + "name": "Bed", + "examine": "It\u0027s a fairly ordinary bed, but...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2255, + "name": "Thing under the bed", + "examine": "It\u0027s just like that dream I use to have when I was little.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2256, + "name": "Paladin", + "examine": "A holy warrior.", + "respawn": 10, + "combat": 62, + "hitpoints": 57, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 74, + "defenceMelee": 74, + "defenceRange": 74, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2257, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2258, + "name": "Mage of Zamorak", + "examine": "A disciple of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2259, + "name": "Mage of Zamorak", + "examine": "A disciple of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2260, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2261, + "name": "Mage of Zamorak", + "examine": "A disciple of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2262, + "name": "Dark mage", + "examine": "An initiate of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2263, + "name": "Abyssal leech", + "examine": "A blood-drinking denizen of the abyss.", + "respawn": 10, + "combat": 41, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2264, + "name": "Abyssal guardian", + "examine": "It seems to have eyes in the back of its head...", + "respawn": 10, + "combat": 59, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2265, + "name": "Abyssal walker", + "examine": "Apparently walks the abyss.", + "respawn": 10, + "combat": 81, + "hitpoints": 95, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 123, + "defenceMelee": 123, + "defenceRange": 123, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2266, + "name": "Brian O\u0027Richard", + "examine": "Head of the maze.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2267, + "name": "Rogue Guard", + "examine": "Roguelike and guardish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2268, + "name": "Rogue Guard", + "examine": "Roguelike and guardish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2269, + "name": "Rogue Guard", + "examine": "Roguelike and guardish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2270, + "name": "Martin Thwait", + "examine": "A loveable rogue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2271, + "name": "Emerald Benedict", + "examine": "A rich banker man... Some say too rich.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2272, + "name": "Spin Blades", + "examine": "I don\u0027t think I want to get too close to that!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2273, + "name": "Spin Blades", + "examine": "I don\u0027t think I want to get too close to that!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2274, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2275, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2276, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2277, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2278, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2279, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2280, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2281, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 0, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2282, + "name": "Sir Spishyus", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2283, + "name": "Lady Table", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2284, + "name": "Sir Kuam Ferentse", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2285, + "name": "Sir Leye", + "examine": "A warrior blessed by Saradomin.", + "respawn": 10, + "combat": 20, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2286, + "name": "Sir Tinley", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2287, + "name": "Sir Ren Itchood", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2288, + "name": "Miss Cheevers", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2289, + "name": "Ms. Hynn Terprett", + "examine": "An observer for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2290, + "name": "Sir Tiffy Cashien", + "examine": "Head of recruitment for the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2291, + "name": "Rug Merchant", + "examine": "A carpet merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2292, + "name": "Rug Merchant", + "examine": "A carpet merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2293, + "name": "Rug Merchant", + "examine": "A man who deals in rugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2294, + "name": "Rug Merchant", + "examine": "A man who deals in rugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2295, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2296, + "name": "Rug Merchant", + "examine": "A man who deals in rugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2297, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2298, + "name": "Rug Merchant", + "examine": "A man who deals in rugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2299, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2300, + "name": "Rug Station Attendant", + "examine": "A man who deals in rugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2301, + "name": "Monkey", + "examine": "Perhaps our oldest relatives?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2302, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2303, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2304, + "name": "Sarah", + "examine": "She sells Farming equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2305, + "name": "Vanessa", + "examine": "She sells Farming equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2306, + "name": "Richard", + "examine": "He sells Farming equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2307, + "name": "Alice", + "examine": "She sells Farming equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2308, + "name": "Capt\u0027 Arnav", + "examine": "Distinctly piratical.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2309, + "name": "", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2310, + "name": "Cow calf", + "examine": "Young, but still beefy.", + "respawn": 10, + "combat": 2, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2311, + "name": "Sheepdog", + "examine": "Farmer/sheep liaison officer. Go on - give the dog a bone!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2312, + "name": "Rooster", + "examine": "He rules the, er, roost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2313, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 2314, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 2315, + "name": "Chicken", + "examine": "Yep. Definitely a chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 2316, + "name": "Pig", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2317, + "name": "Pig", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2318, + "name": "Piglet", + "examine": "Hog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2319, + "name": "Piglet", + "examine": "Porcine.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2320, + "name": "Piglet", + "examine": "I shall call him, Mini Pig.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2321, + "name": "Blandebir", + "examine": "An expert on the brewing of ales and cider.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2322, + "name": "Metarialus", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2323, + "name": "Elstan", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2324, + "name": "Dantaera", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2325, + "name": "Kragen", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2326, + "name": "Lyra", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2327, + "name": "Francis", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2328, + "name": "Gardener", + "examine": "The hat is a dead give away.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2329, + "name": "Iago", + "examine": "Only the Grim Reaper would have a pet like this.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2330, + "name": "Garth", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2331, + "name": "Ellena", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2332, + "name": "Selena", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2333, + "name": "Vasquen", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2334, + "name": "Rhonen", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2335, + "name": "Dreven", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2336, + "name": "Taria", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2337, + "name": "Rhazien", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2338, + "name": "Torrell", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2339, + "name": "Alain", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2340, + "name": "Heskel", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2341, + "name": "Treznor", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2342, + "name": "Fayeth", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2343, + "name": "Bolongo", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2344, + "name": "Gileth", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2345, + "name": "Sick-looking sheep (1)", + "examine": "The sheep looks distinctly unwell and has a slight red tinge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2346, + "name": "Sick-looking sheep (2)", + "examine": "The sheep looks distinctly unwell and has a slight green tinge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2347, + "name": "Sick-looking sheep (3)", + "examine": "The sheep looks distinctly unwell and has a slight blue tinge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2348, + "name": "Sick-looking sheep (4)", + "examine": "The sheep looks distinctly unwell and has a slight yellow tinge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2349, + "name": "Mourner", + "examine": "A mourner.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2350, + "name": "Mourner", + "examine": "A mourner.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2351, + "name": "Mourner", + "examine": "A mourner.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2352, + "name": "Eudav", + "examine": "Buys wholesale, sells retail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2353, + "name": "Oronwen", + "examine": "An elven Seamstress.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2354, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2355, + "name": "Banker", + "examine": "She can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2356, + "name": "Dalldav", + "examine": "Buys and sells bows.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2357, + "name": "Gethin", + "examine": "Looks like he knows his way around a kitchen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2358, + "name": "Arianwyn", + "examine": "An odd looking person.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2359, + "name": "Elf warrior", + "examine": "I don\u0027t wanna be at the wrong end of that pike.", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2360, + "name": "Elf warrior", + "examine": "I don\u0027t wanna be at the wrong end of that pike.", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2361, + "name": "Elf warrior", + "examine": "He looks pretty handy with that bow.", + "respawn": 10, + "combat": 90, + "hitpoints": 105, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 136, + "defenceMelee": 136, + "defenceRange": 136, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2362, + "name": "Elf warrior", + "examine": "He looks pretty handy with that bow.", + "respawn": 10, + "combat": 90, + "hitpoints": 105, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 136, + "defenceMelee": 136, + "defenceRange": 136, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2363, + "name": "Goreu", + "examine": "An elf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2364, + "name": "Ysgawyn", + "examine": "An elf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2365, + "name": "Arvel", + "examine": "An elf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2366, + "name": "Mawrth", + "examine": "An elf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2367, + "name": "Kelyn", + "examine": "An elf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2368, + "name": "Eoin", + "examine": "An elven child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2369, + "name": "Iona", + "examine": "An elven child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2370, + "name": "Null", + "examine": "A gnomic inventor", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2371, + "name": "Gnome", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2372, + "name": "Head mourner", + "examine": "A Mourner showing his true identity.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2373, + "name": "Mourner", + "examine": "A Mourner, or plague healer.", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2374, + "name": "Mourner", + "examine": "A Mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2375, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2376, + "name": "Eluned", + "examine": "Wow - the prettiest Elf I have ever seen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2377, + "name": "Sick-looking sheep (1)", + "examine": "This sheep is dyed red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2378, + "name": "Sick-looking sheep (2)", + "examine": "This sheep is dyed green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2379, + "name": "Sick-looking sheep (3)", + "examine": "This sheep is dyed blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2380, + "name": "Sick-looking sheep (4)", + "examine": "This sheep is dyed yellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2381, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2382, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2383, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2384, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2385, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2386, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2387, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2388, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2389, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2390, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2391, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2392, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2393, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2394, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2395, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2396, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2397, + "name": "Mysterious ghost", + "examine": "Seems to flitter in and out of existence...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2398, + "name": "Mysterious ghost", + "examine": "Seems to flitter in and out of existence...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2399, + "name": "Mysterious ghost", + "examine": "Seems to flitter in and out of existence...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2400, + "name": "Mysterious ghost", + "examine": "Seems to flitter in and out of existence...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2401, + "name": "Mysterious ghost", + "examine": "Seems to flitter in and out of existence...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2402, + "name": "Mysterious ghost", + "examine": "Seems to flitter in and out of existence...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2403, + "name": "Null", + "examine": "The head secretary of the Red Axe mining company.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2404, + "name": "Null", + "examine": "One of the leaders of the business Consortium, a ruler of Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2405, + "name": "Null", + "examine": "The cat belongs to the director of the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2406, + "name": "Null", + "examine": "Apparantly negotiating some business with the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2407, + "name": "Null", + "examine": "A gnome traveller, visiting Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2408, + "name": "Null", + "examine": "A gnome traveller, visiting Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2409, + "name": "Cart conductor", + "examine": "He makes sure the carts don\u0027t run anyone over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2410, + "name": "Red Axe Director", + "examine": "Walking stick, spiky hair, twirly moustache. He\u0027s a villain alright.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2411, + "name": "Red Axe Director", + "examine": "Walking stick, spiky hair, twirly moustache. He\u0027s a villain alright.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2412, + "name": "Red Axe Henchman", + "examine": "That\u0027s one mean looking dwarf the Red Axe has employed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2413, + "name": "Red Axe Henchman", + "examine": "That\u0027s one mean looking dwarf the Red Axe has employed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2414, + "name": "Red Axe Henchman", + "examine": "That\u0027s one mean looking dwarf the Red Axe has employed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2415, + "name": "Colonel Grimsson", + "examine": "That\u0027s one mean looking dwarf the Red Axe has employed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2416, + "name": "Colonel Grimsson", + "examine": "That\u0027s one mean looking dwarf the Red Axe has employed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2417, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2418, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2419, + "name": "Grunsh", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2420, + "name": "Gnome emissary", + "examine": "Apparantly negotiating some business with the Red Axe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2421, + "name": "Gnome companion", + "examine": "The companion of the gnome emissary.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2422, + "name": "Gnome companion", + "examine": "The companion of the gnome emissary.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2423, + "name": "Chaos dwarf", + "examine": "A dwarf gone bad.", + "respawn": 10, + "combat": 48, + "hitpoints": 61, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 79, + "defenceMelee": 79, + "defenceRange": 79, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2424, + "name": "Gunslik", + "examine": "Proprietor of Gunslik\u0027s Assorted Items.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2425, + "name": "Nolar", + "examine": "A crafty dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2426, + "name": "Factory Worker", + "examine": "Taking a break from work, presumably.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2427, + "name": "Cart conductor", + "examine": "Remember don\u0027t drink and ride in minecarts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2428, + "name": "Gauss", + "examine": "A beer drinking dwarf that is, for once, not totally drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2429, + "name": "Drunken Dwarf", + "examine": "He\u0027s had a fair bit to drink...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2430, + "name": "Rowdy dwarf", + "examine": "A loud, drunk and generally obnoxious dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2431, + "name": "Ulifed", + "examine": "A dwarf minding his own business.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2432, + "name": "Red Axe Henchman", + "examine": "A short, but extremely tough looking dwarf...", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2433, + "name": "Red Axe Henchman", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2434, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2435, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2436, + "name": "Jarvald", + "examine": "A Fremennik raider.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2437, + "name": "Jarvald", + "examine": "A Fremennik raider.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2438, + "name": "Jarvald", + "examine": "A Fremennik raider.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2439, + "name": "Askeladden", + "examine": "Looks like a wanna be Fremennik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2440, + "name": "Door-support", + "examine": "This support is propping the door closed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2441, + "name": "Door", + "examine": "Without its support, it was no problem!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2442, + "name": "Door", + "examine": "Without its support, it was no problem!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2443, + "name": "Door-support", + "examine": "This support is propping the door closed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2444, + "name": "Door", + "examine": "This door seems to have a weak point.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2445, + "name": "Door", + "examine": "This door seems to have a weak point.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2446, + "name": "Door-support", + "examine": "This support is propping the door closed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2447, + "name": "Door", + "examine": "This door seems to have a weak point.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2448, + "name": "Door", + "examine": "This door seems to have a weak point.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2449, + "name": "Egg", + "examine": "I bet it\u0027s not made of chocolate...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2450, + "name": "Egg", + "examine": "Moving eggs are worrying...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2451, + "name": "Egg", + "examine": "I wonder what was inside it?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2452, + "name": "Giant Rock Crab", + "examine": "No one likes crabs... especially really big ones!", + "respawn": 10, + "combat": 137, + "hitpoints": 240, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 312, + "defenceMelee": 312, + "defenceRange": 312, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2453, + "name": "Boulder", + "examine": "Heavy rock!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2454, + "name": "Dagannoth spawn", + "examine": "A teeny-tiny horror from the ocean depths...", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2455, + "name": "Dagannoth", + "examine": "A darkened horror from the ocean depths...", + "respawn": 10, + "combat": 90, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2456, + "name": "Dagannoth", + "examine": "A spiney horror from the ocean depths...", + "respawn": 10, + "combat": 88, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2457, + "name": "Wallasalki", + "examine": "A fearsome magical water creature.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2458, + "name": "Freaky Forester", + "examine": "He\u0027s at home in the forests.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2459, + "name": "Pheasant", + "examine": "A brightly coloured game bird.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2371, + "defenceAnim": 2372, + "deathAnim": 2373, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2460, + "name": "Pheasant", + "examine": "A brightly coloured game bird.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2371, + "defenceAnim": 2372, + "deathAnim": 2373, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2461, + "name": "Pheasant", + "examine": "A brightly coloured game bird.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2371, + "defenceAnim": 2372, + "deathAnim": 2373, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2462, + "name": "Pheasant", + "examine": "A brightly coloured game bird.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2371, + "defenceAnim": 2372, + "deathAnim": 2373, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2463, + "name": "Evil Chicken", + "examine": "He sells \u0027exotic\u0027 ingredients to the cave goblins.", + "respawn": 10, + "combat": 19, + "hitpoints": 19, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2299, + "defenceAnim": 2300, + "deathAnim": 2301, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2464, + "name": "Evil Chicken", + "examine": "He sells \u0027exotic\u0027 ingredients to the cave goblins.", + "respawn": 10, + "combat": 38, + "hitpoints": 40, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2299, + "defenceAnim": 2300, + "deathAnim": 2301, + "attackBonus": 40, + "defenceMelee": 40, + "defenceRange": 40, + "defenceMage": 40, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2465, + "name": "Evil Chicken", + "examine": "She sells \u0027exotic\u0027 ingredients to the cave goblins.", + "respawn": 10, + "combat": 69, + "hitpoints": 60, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2299, + "defenceAnim": 2300, + "deathAnim": 2301, + "attackBonus": 70, + "defenceMelee": 70, + "defenceRange": 70, + "defenceMage": 70, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2466, + "name": "Evil Chicken", + "examine": "He sells \u0027exotic\u0027 ingredients to the cave goblins.", + "respawn": 10, + "combat": 81, + "hitpoints": 80, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2299, + "defenceAnim": 2300, + "deathAnim": 2301, + "attackBonus": 80, + "defenceMelee": 80, + "defenceRange": 80, + "defenceMage": 80, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2467, + "name": "Evil Chicken", + "examine": "She sells \u0027exotic\u0027 ingredients to the cave goblins.", + "respawn": 10, + "combat": 121, + "hitpoints": 105, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2299, + "defenceAnim": 2300, + "deathAnim": 2301, + "attackBonus": 120, + "defenceMelee": 120, + "defenceRange": 120, + "defenceMage": 120, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2468, + "name": "Evil Chicken", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 159, + "hitpoints": 120, + "maxHit": 21, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2299, + "defenceAnim": 2300, + "deathAnim": 2301, + "attackBonus": 160, + "defenceMelee": 160, + "defenceRange": 160, + "defenceMage": 160, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2469, + "name": "Frog", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2470, + "name": "Frog", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2471, + "name": "Frog", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2472, + "name": "Frog", + "examine": "Speaks on behalf of the Royal Frog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2473, + "name": "Frog", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2474, + "name": "Frog prince", + "examine": "What a handsome man!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2475, + "name": "Frog princess", + "examine": "What a nice dress!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2476, + "name": "Rick Turpentine", + "examine": "A retired highwayman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2477, + "name": "Quiz Master", + "examine": "Apparently a master of quizzes!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2478, + "name": "Evil Bob", + "examine": "Hey, it\u0027s Bob the cat! Or...is it?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2479, + "name": "Evil Bob", + "examine": "Hey, it\u0027s Bob the cat! Or...is it?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2480, + "name": "Servant", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2481, + "name": "Servant", + "examine": "Servant of Evil Bob.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2482, + "name": "Giant bat", + "examine": "Annoying flappy thing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2483, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2484, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2485, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2486, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2487, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2488, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2489, + "name": "Bush snake", + "examine": "A slithering serpent that likes to hide in the bush.", + "respawn": 10, + "combat": 35, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2490, + "name": "Bush snake", + "examine": "A slithering serpent that likes to hide in the bush.", + "respawn": 10, + "combat": 35, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2491, + "name": "Jungle spider", + "examine": "A barely visible deadly jungle spider.", + "respawn": 10, + "combat": 44, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2492, + "name": "Jungle spider", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 44, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2493, + "name": "Large mosquito", + "examine": "A flying bloodsucker.", + "respawn": 10, + "combat": 13, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2494, + "name": "Mosquito swarm", + "examine": "A swarm of three highly agile mosquitoes.", + "respawn": 10, + "combat": 17, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2495, + "name": "Mosquito swarm", + "examine": "A swarm of five highly agile mosquitoes.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2496, + "name": "Tribesman", + "examine": "A vicious warrior.", + "respawn": 10, + "combat": 32, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2497, + "name": "Tribesman", + "examine": "A vicious warrior.", + "respawn": 10, + "combat": 32, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2498, + "name": "Broodoo victim", + "examine": "An undead victim of some ancient murderous ritual; his skin appears deep green.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2499, + "name": "Broodoo victim", + "examine": "An undead victim of some ancient murderous ritual; his skin appears deep green.", + "respawn": 10, + "combat": 60, + "hitpoints": 87, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 113, + "defenceMelee": 113, + "defenceRange": 113, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2500, + "name": "Broodoo victim", + "examine": "An undead victim of some ancient murderous ritual; his skin appears pale yellow.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2501, + "name": "Broodoo victim", + "examine": "An undead victim of some ancient murderous ritual; his skin appears pale yellow.", + "respawn": 10, + "combat": 60, + "hitpoints": 87, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 113, + "defenceMelee": 113, + "defenceRange": 113, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2502, + "name": "Broodoo victim", + "examine": "An undead victim of some ancient murderous ritual; his skin is pale and drawn.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2503, + "name": "Broodoo victim", + "examine": "An undead victim of some ancient murderous ritual; his skin is pale and drawn.", + "respawn": 10, + "combat": 60, + "hitpoints": 87, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 113, + "defenceMelee": 113, + "defenceRange": 113, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2504, + "name": "Null", + "examine": "A Tai Bwo Wannai villager.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2505, + "name": "Sharimika", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2506, + "name": "Sharimika", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2507, + "name": "Null", + "examine": "A Tai Bwo Wannai villager.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2508, + "name": "Mamma Bufetta", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2509, + "name": "Mamma Bufetta", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2510, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2511, + "name": "Layleen", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2512, + "name": "Layleen", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2513, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2514, + "name": "Karaday", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2515, + "name": "Karaday", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2516, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2517, + "name": "Safta Doc", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2518, + "name": "Safta Doc", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2519, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2520, + "name": "Gabooty", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2521, + "name": "Gabooty", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2522, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2523, + "name": "Fanellaman", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2524, + "name": "Fanellaman", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2525, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2526, + "name": "Jagbakoba", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2527, + "name": "Jagbakoba", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2528, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2529, + "name": "Murcaily", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2530, + "name": "Murcaily", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2531, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2532, + "name": "Rionasta", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2533, + "name": "Rionasta", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2534, + "name": "Mahogany", + "examine": "He sold poisoned ingredients to the cave goblins.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2535, + "name": "Teak", + "examine": "The most senior goblin cleric.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2536, + "name": "Niles", + "examine": "The brother of Miles and Giles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2537, + "name": "Miles", + "examine": "The brother of Niles and Giles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2538, + "name": "Giles", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2539, + "name": "Cap\u0027n Hand", + "examine": "He used to swashbuckle his way across the seven seas.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2540, + "name": "Dr Jekyll", + "examine": "He looks troubled.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2541, + "name": "Mr Hyde", + "examine": "The High Priest has been possessed.", + "respawn": 10, + "combat": 14, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2542, + "name": "Mr Hyde", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 29, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2543, + "name": "Mr Hyde", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 49, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2544, + "name": "Mr Hyde", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 79, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2545, + "name": "Mr Hyde", + "examine": "Back from the dead, again?", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2546, + "name": "Mr Hyde", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 159, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2547, + "name": "Dr Ford", + "examine": "A crazy, evil druid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2548, + "name": "Blackjack seller", + "examine": "A market stall keeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2549, + "name": "Ali the dyer", + "examine": "A colourful character.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2550, + "name": "Dwarven Miner", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2551, + "name": "Dwarven Miner", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2552, + "name": "Dwarven Miner", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2553, + "name": "Blast Furnace Foreman", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2554, + "name": "Tin ore", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2555, + "name": "Copper ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2556, + "name": "Iron ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2557, + "name": "Mithril ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2558, + "name": "Adamantite ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2559, + "name": "Runite ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2560, + "name": "Silver ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2561, + "name": "Gold ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2562, + "name": "Coal", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2563, + "name": "Perfect gold ore", + "examine": "Some ore going into the furnace.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2564, + "name": "Ordan", + "examine": "He smells of rock dust.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2565, + "name": "Jorzik", + "examine": "He buys stuff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2566, + "name": "Wise Old Man", + "examine": "A venerable sage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2567, + "name": "Wise Old Man", + "examine": "A venerable and rich sage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2568, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2569, + "name": "Banker", + "examine": "Good with money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2570, + "name": "Banker", + "examine": "Good with money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2571, + "name": "Market Guard", + "examine": "He guards the Draynor Market stalls from thieves.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2572, + "name": "Olivia", + "examine": "She\u0027s a seed merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2573, + "name": "Pillory Guard", + "examine": "A law enforcer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2574, + "name": "Bank guard", + "examine": "He\u0027s guarding the bank.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2575, + "name": "Purepker895", + "examine": "A player.", + "respawn": 10, + "combat": 52, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2576, + "name": "Qutiedoll", + "examine": "A player.", + "respawn": 10, + "combat": 16, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2577, + "name": "1337sp34kr", + "examine": "A player.", + "respawn": 10, + "combat": 63, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2578, + "name": "Elfinlocks", + "examine": "A player.", + "respawn": 10, + "combat": 87, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2579, + "name": "Cool Mom227", + "examine": "A player.", + "respawn": 10, + "combat": 27, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2580, + "name": "Bernald", + "examine": "Looks after the Burthorpe vinery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2581, + "name": "Ellamaria", + "examine": "Queen Ellamaria of Varrock.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2582, + "name": "Trolley", + "examine": "This statue of Saradomin has been \u0027borrowed\u0027 for a while.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2583, + "name": "Trolley", + "examine": "This statue of a king has been \u0027borrowed\u0027 for a while.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2584, + "name": "Trolley", + "examine": "An empty trolley.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2585, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2586, + "name": "Billy, a guard of Falador", + "examine": "Somebody should have warned him when he signed up.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2587, + "name": "Bob, another guard of Falador", + "examine": "Shame his pension\u0027s going to waste.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2588, + "name": "Brother Althric", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2589, + "name": "PKMaster0036", + "examine": "A master of the wilderness.", + "respawn": 10, + "combat": 87, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2590, + "name": "King Roald", + "examine": "Varrock\u0027s resident monarch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2591, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2613, + "defenceAnim": 2605, + "deathAnim": 2607, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 130, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2592, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2612, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2593, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2612, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2594, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2595, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2596, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2608, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2597, + "name": "TzHaar-Mej", + "examine": "Appears to be some kind of mystic.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2612, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2598, + "name": "TzHaar-Hur", + "examine": "Looks like a craftsman of some kind.", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2610, + "defenceAnim": 2606, + "deathAnim": 2608, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 104, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2599, + "name": "TzHaar-Hur", + "examine": "Looks like a craftsman of some kind.", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2600, + "name": "TzHaar-Hur", + "examine": "Looks like a craftsman of some kind.", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2601, + "name": "TzHaar-Hur", + "examine": "Looks like a craftsman of some kind.", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2602, + "name": "TzHaar-Hur", + "examine": "Looks like a craftsman of some kind.", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2603, + "name": "TzHaar-Hur", + "examine": "Looks like a craftsman of some kind.", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2609, + "defenceAnim": 2606, + "deathAnim": 2607, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2604, + "name": "TzHaar-Xil", + "examine": "Doesn\u0027t look very social.", + "respawn": 10, + "combat": 133, + "hitpoints": 120, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2612, + "defenceAnim": 2605, + "deathAnim": 2608, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 156, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2605, + "name": "TzHaar-Xil", + "examine": "Doesn\u0027t look very social.", + "respawn": 10, + "combat": 133, + "hitpoints": 120, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2606, + "name": "TzHaar-Xil", + "examine": "Doesn\u0027t look very social.", + "respawn": 10, + "combat": 133, + "hitpoints": 120, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2607, + "name": "TzHaar-Xil", + "examine": "Doesn\u0027t look very social.", + "respawn": 10, + "combat": 133, + "hitpoints": 120, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2608, + "name": "TzHaar-Xil", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 133, + "hitpoints": 120, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2609, + "name": "TzHaar-Xil", + "examine": "Doesn\u0027t look very social.", + "respawn": 10, + "combat": 133, + "hitpoints": 120, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2610, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2610, + "defenceAnim": 2605, + "deathAnim": 2307, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 182, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2611, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2612, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2613, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2614, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2615, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2612, + "defenceAnim": 2606, + "deathAnim": 2608, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2616, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 149, + "hitpoints": 140, + "maxHit": 15, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2612, + "defenceAnim": 2606, + "deathAnim": 2608, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2617, + "name": "TzHaar-Mej-Jal", + "examine": "Another one of those mystic-types.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2618, + "name": "TzHaar-Mej-Kah", + "examine": "Another one of those mystic-types.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2619, + "name": "TzHaar-Ket-Zuh", + "examine": "Maybe it\u0027ll guard my possessions.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2620, + "name": "TzHaar-Hur-Tel", + "examine": "Wonder what it\u0027s making.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2621, + "name": "Olaf Hradson", + "examine": "A soggy, smelly Fremennik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2622, + "name": "TzHaar-Hur-Lek", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2623, + "name": "TzHaar-Mej-Roh", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2624, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2625, + "name": "TzHaar-Ket", + "examine": "Must be a guard or something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2626, + "name": "Rocks", + "examine": "Stoney!", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2627, + "name": "Tz-Kih", + "examine": "Hangs out in caves.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2621, + "defenceAnim": 2622, + "deathAnim": 2620, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2628, + "name": "Tz-Kih", + "examine": "Hangs out in caves.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2621, + "defenceAnim": 2622, + "deathAnim": 2620, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2629, + "name": "Tz-Kek", + "examine": "Looks like living lava...", + "respawn": 10, + "combat": 45, + "hitpoints": 20, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 2625, + "defenceAnim": 2626, + "deathAnim": 2627, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2630, + "name": "Tz-Kek", + "examine": "Looks like living lava...", + "respawn": 10, + "combat": 45, + "hitpoints": 20, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 2625, + "defenceAnim": 2626, + "deathAnim": 2627, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2631, + "name": "Tok-Xil", + "examine": "I don\u0027t like the look of those spines...", + "respawn": 10, + "combat": 90, + "hitpoints": 40, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2628, + "defenceAnim": 2629, + "deathAnim": 2630, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2632, + "name": "Tok-Xil", + "examine": "I don\u0027t like the look of those spines...", + "respawn": 10, + "combat": 90, + "hitpoints": 40, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2628, + "defenceAnim": 2629, + "deathAnim": 2630, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2633, + "name": "Wise Old Man", + "examine": "A venerable sage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2634, + "name": "Miss Schism", + "examine": "A busy-body who loves a bit of gossip.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2635, + "name": "Bob", + "examine": "The Jagex cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2636, + "name": "Bob", + "examine": "The Jagex cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2637, + "name": "Sphinx", + "examine": "An awe inspiring combination of a lady, a lion and an eagle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2638, + "name": "Neite", + "examine": "A graceful feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2639, + "name": "Robert the Strong", + "examine": "A battle hardened hero.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2640, + "name": "Odysseus", + "examine": "Robert\u0027s beautiful panther.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2641, + "name": "Dragonkin", + "examine": "Creator of Dragons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2642, + "name": "King Black Dragon", + "examine": "The biggest, meanest dragon around.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2643, + "name": "R4ng3rNo0b889", + "examine": "A ranger.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2644, + "name": "Love Cats", + "examine": "Loving cats.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2645, + "name": "Love Cats", + "examine": "Loving cats.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2646, + "name": "Neite", + "examine": "A graceful feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2647, + "name": "Bob", + "examine": "The Jagex cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2648, + "name": "Beite", + "examine": "A special kitty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2649, + "name": "Gnome", + "examine": "She gnows where its gnat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2650, + "name": "Gnome", + "examine": "A gnome of sorts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2651, + "name": "Odysseus", + "examine": "Robert\u0027s beautiful panther.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2652, + "name": "Null", + "examine": "A graceful feline.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2653, + "name": "Neite", + "examine": "A graceful feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2654, + "name": "Null", + "examine": "Nice but dim.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2655, + "name": "Unferth", + "examine": "Nice but dim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2656, + "name": "Unferth", + "examine": "Nice but dim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2657, + "name": "Unferth", + "examine": "Nice but dim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2658, + "name": "Unferth", + "examine": "Nice but dim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2659, + "name": "Unferth", + "examine": "Nice but dim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2660, + "name": "Reldo", + "examine": "Reldo the librarian.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2661, + "name": "Reldo", + "examine": "Reldo the librarian.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2662, + "name": "Lazy cat", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2663, + "name": "Lazy cat", + "examine": "A friendly not so little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2664, + "name": "Lazy cat", + "examine": "A friendly not so little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2665, + "name": "Lazy cat", + "examine": "A friendly not so little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2666, + "name": "Lazy cat", + "examine": "A friendly not so little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2667, + "name": "Lazy cat", + "examine": "A friendly not so little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2668, + "name": "Wily cat", + "examine": "A friendly little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2669, + "name": "Wily cat", + "examine": "Wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2670, + "name": "Wily cat", + "examine": "Wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2671, + "name": "Wily cat", + "examine": "Wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2672, + "name": "Wily cat", + "examine": "Wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2673, + "name": "Wily cat", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2674, + "name": "Thief", + "examine": "Known for his light-fingered qualities.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2675, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2676, + "name": "Make-over mage", + "examine": "Master of the mystical make-over.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2677, + "name": "Highwayman", + "examine": "He holds up passers by.", + "respawn": 10, + "combat": 5, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2678, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2679, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2680, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2681, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2682, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2705, + "defenceAnim": 2706, + "deathAnim": 2707, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 2683, + "name": "Hengel", + "examine": "A citizen of Rimmington.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2684, + "name": "Anja", + "examine": "A citizen of Rimmington.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2685, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature.", + "respawn": 10, + "combat": 28, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 164, + "defenceAnim": 165, + "deathAnim": 167, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2686, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature.", + "respawn": 10, + "combat": 28, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 164, + "defenceAnim": 165, + "deathAnim": 167, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2687, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature.", + "respawn": 10, + "combat": 28, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 164, + "defenceAnim": 165, + "deathAnim": 167, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2688, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature wielding a spear.", + "respawn": 10, + "combat": 28, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 163, + "defenceAnim": 165, + "deathAnim": 167, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2689, + "name": "Frog", + "examine": "Didn\u0027t the mage say this procedure was totally safe?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2690, + "name": "Jack Seagull", + "examine": "A salty seafarer. Needs a wash.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2691, + "name": "Longbow Ben", + "examine": "A strange man with a strange name. Probably a strange past, too.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2692, + "name": "Ahab", + "examine": "So what can one do with a drunken sailor?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2693, + "name": "Seagull", + "examine": "She quackers.", + "respawn": 10, + "combat": 2, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2694, + "name": "Seagull", + "examine": "Mini quackers.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2695, + "name": "Pirate", + "examine": "Yarrr! Shiver me timbers!", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2696, + "name": "Thief", + "examine": "Known for his light-fingered qualities.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2697, + "name": "Mugger", + "examine": "He doesn\u0027t look so happy now he\u0027s in jail.", + "respawn": 10, + "combat": 6, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2698, + "name": "Black knight", + "examine": "A dark-hearted knight.", + "respawn": 10, + "combat": 33, + "hitpoints": 42, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 54, + "defenceMelee": 54, + "defenceRange": 54, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2699, + "name": "Guard", + "examine": "He\u0027s guarding the prison.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2700, + "name": "Guard", + "examine": "A prison guard.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2701, + "name": "Guard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2702, + "name": "Guard", + "examine": "A prison guard.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2703, + "name": "Guard", + "examine": "A prison guard.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2704, + "name": "Guard", + "examine": "He\u0027s asleep.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2705, + "name": "Guard", + "examine": "Keeping an eye out for suspicious activity.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2706, + "name": "Crab", + "examine": "No one likes crabs...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2707, + "name": "Seagull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2708, + "name": "Seagull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2709, + "name": "Fire wizard", + "examine": "Caution HOT!", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2710, + "name": "Water wizard", + "examine": "Hydro-power!", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2711, + "name": "Earth wizard", + "examine": "His hands are covered in mud. At least, I hope that\u0027s mud.", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2712, + "name": "Air wizard", + "examine": "At least he looks solid enough to fight.", + "respawn": 10, + "combat": 13, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 711, + "defenceAnim": 1834, + "deathAnim": 836, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2713, + "name": "Malignius Mortifer", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2714, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2715, + "name": "Skeleton", + "examine": "Rattle dem bones.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2716, + "name": "Ghost", + "examine": "WoooOOOOoooo!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2717, + "name": "Skeleton mage", + "examine": "Dead, but still powerful.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2718, + "name": "Betty", + "examine": "She seems like a nice sort of person.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2719, + "name": "Grum", + "examine": "Loves his gold!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2720, + "name": "Gerrant", + "examine": "An expert on fishing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2721, + "name": "Wydin", + "examine": "Likes his food to be kept fresh.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2722, + "name": "Null", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2723, + "name": "Null", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2724, + "name": "Null", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2725, + "name": "Null", + "examine": "A wise barbarian, apparently. He still looks like a thug.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2726, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2727, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2728, + "name": "Monk of Entrana", + "examine": "Holy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2729, + "name": "Monk of Entrana", + "examine": "Holy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2730, + "name": "Monk of Entrana", + "examine": "Holy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2731, + "name": "Monk of Entrana", + "examine": "Holy looking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2732, + "name": "Master Crafter", + "examine": "He works in the Crafting Guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2733, + "name": "Master Crafter", + "examine": "He wanders around the Crafting Guild pretending to be working.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2734, + "name": "Tz-Kih", + "examine": "Hangs out in caves.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2621, + "defenceAnim": 2622, + "deathAnim": 2620, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2735, + "name": "Tz-Kih", + "examine": "Hangs out in caves.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2621, + "defenceAnim": 2622, + "deathAnim": 2620, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2736, + "name": "Tz-Kek", + "examine": "Looks like living lava...", + "respawn": 10, + "combat": 45, + "hitpoints": 20, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 2625, + "defenceAnim": 2626, + "deathAnim": 2627, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2737, + "name": "Tz-Kek", + "examine": "Looks like living lava...", + "respawn": 10, + "combat": 45, + "hitpoints": 20, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 2625, + "defenceAnim": 2626, + "deathAnim": 2627, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2738, + "name": "Tz-Kek", + "examine": "Looks like living lava...", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 2625, + "defenceAnim": 2626, + "deathAnim": 2627, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2739, + "name": "Tok-Xil", + "examine": "I don\u0027t like the look of those spines...", + "respawn": 10, + "combat": 90, + "hitpoints": 40, + "maxHit": 14, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2628, + "defenceAnim": 2629, + "deathAnim": 2630, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2740, + "name": "Tok-Xil", + "examine": "I don\u0027t like the look of those spines...", + "respawn": 10, + "combat": 90, + "hitpoints": 40, + "maxHit": 14, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2628, + "defenceAnim": 2629, + "deathAnim": 2630, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2741, + "name": "Yt-MejKot", + "examine": "Holy reptile...", + "respawn": 10, + "combat": 180, + "hitpoints": 80, + "maxHit": 25, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 2637, + "defenceAnim": 2635, + "deathAnim": 2638, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2742, + "name": "Yt-MejKot", + "examine": "Holy reptile...", + "respawn": 10, + "combat": 180, + "hitpoints": 80, + "maxHit": 25, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 2637, + "defenceAnim": 2635, + "deathAnim": 2638, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2743, + "name": "Ket-Zek", + "examine": "That\u0027s one hot dog!", + "respawn": 10, + "combat": 360, + "hitpoints": 160, + "maxHit": 49, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 2644, + "defenceAnim": 2645, + "deathAnim": 2646, + "attackBonus": 208, + "defenceMelee": 208, + "defenceRange": 208, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2744, + "name": "Ket-Zek", + "examine": "That\u0027s one hot dog!", + "respawn": 10, + "combat": 360, + "hitpoints": 160, + "maxHit": 49, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 2644, + "defenceAnim": 2645, + "deathAnim": 2646, + "attackBonus": 208, + "defenceMelee": 208, + "defenceRange": 208, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2745, + "name": "TzTok-Jad", + "examine": "This is going to hurt...", + "respawn": 10, + "combat": 702, + "hitpoints": 250, + "maxHit": 94, + "size": 5, + "attackSpeed": 3000, + "attackAnim": 2655, + "defenceAnim": 2653, + "deathAnim": 2654, + "attackBonus": 325, + "defenceMelee": 325, + "defenceRange": 325, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2746, + "name": "Yt-HurKot", + "examine": "Mini menace.", + "respawn": 10, + "combat": 108, + "hitpoints": 60, + "maxHit": 14, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 50, + "defenceMelee": 50, + "defenceRange": 50, + "defenceMage": 10, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2747, + "name": "Solus Dellagar", + "examine": "A powerful warrior mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 40, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2748, + "name": "Savant", + "examine": "Assigned to help tracking down Solus Dellagar.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2749, + "name": "Lord Daquarius", + "examine": "Wears a stylish suit of armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2750, + "name": "Solus Dellagar", + "examine": "A powerful warrior mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 40, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2751, + "name": "Black Knight", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2752, + "name": "Lord Daquarius", + "examine": "Wears a stylish suit of armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2753, + "name": "Mage of Zamorak", + "examine": "A disciple of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2754, + "name": "Mage of Zamorak", + "examine": "A disciple of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2755, + "name": "Mage of Zamorak", + "examine": "A disciple of Zamorak.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2756, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2757, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2758, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2759, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2760, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2761, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2762, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2763, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2764, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2765, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2766, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2767, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2768, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2769, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2770, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2771, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2772, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2773, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2774, + "name": "Null", + "examine": "An infamous mage", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2775, + "name": "Null", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2776, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2777, + "name": "Black Knight", + "examine": "A dark-hearted knight.", + "respawn": 10, + "combat": 32, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2778, + "name": "Black Knight", + "examine": "A dark-hearted knight.", + "respawn": 10, + "combat": 32, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2779, + "name": "Ranger", + "examine": "A Ranger of the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2780, + "name": "Solus Dellagar", + "examine": "A powerful warrior mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 40, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2781, + "name": "Gnome guard", + "examine": "A tree gnome guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2782, + "name": "Shadow", + "examine": "A shadow.", + "respawn": 10, + "combat": 73, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2783, + "name": "Dark beast", + "examine": "From a darker dimension.", + "respawn": 10, + "combat": 182, + "hitpoints": 220, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 286, + "defenceMelee": 286, + "defenceRange": 286, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2784, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2785, + "name": "Slave", + "examine": "Digging.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2786, + "name": "Slave", + "examine": "Digging.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2787, + "name": "Slave", + "examine": "Confused.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2788, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2789, + "name": "Thorgel", + "examine": "A short angry guy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2790, + "name": "Sergeant Damien", + "examine": "Drill Sergeant from heck!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2791, + "name": "Pillory Guard", + "examine": "A law enforcer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2792, + "name": "Tramp", + "examine": "A man down on his luck.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2793, + "name": "Tramp", + "examine": "A man down on his luck.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2794, + "name": "Tramp", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2795, + "name": "Null", + "examine": "A man down on his luck.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2796, + "name": "Skippy", + "examine": "He looks angry and smells drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2797, + "name": "Skippy", + "examine": "Like a regular Skippy, just damper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2798, + "name": "Skippy", + "examine": "Skippy, just looking a little \u0027tender\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2799, + "name": "Skippy", + "examine": "He seems a lot less angry and smells a great deal fresher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2800, + "name": "A pile of broken glass", + "examine": "It looks like some broken bottles", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2801, + "name": "Mogre", + "examine": "Big, ugly, and smelly.", + "respawn": 10, + "combat": 60, + "hitpoints": 48, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 62, + "defenceMelee": 62, + "defenceRange": 62, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2802, + "name": "Coach", + "examine": "They just call him \u0027Coach\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2803, + "name": "Lizard", + "examine": "Run away, it\u0027s massive!", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2804, + "name": "Desert Lizard", + "examine": "A cold-blooded creature, partial to warmth.", + "respawn": 10, + "combat": 24, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2805, + "name": "Desert Lizard", + "examine": "A cold-blooded creature, partial to warmth.", + "respawn": 10, + "combat": 24, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2806, + "name": "Desert Lizard", + "examine": "A cold-blooded creature, partial to warmth.", + "respawn": 10, + "combat": 24, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2807, + "name": "Small Lizard", + "examine": "A small cold-blooded creature, partial to warmth.", + "respawn": 10, + "combat": 12, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2808, + "name": "Small Lizard", + "examine": "A small cold-blooded creature, partial to warmth.", + "respawn": 10, + "combat": 12, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2809, + "name": "Al the Camel", + "examine": "A camel who has the soul of a poet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2810, + "name": "Elly the Camel", + "examine": "A camel whose love is unrequited.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2811, + "name": "Ollie the Camel", + "examine": "A camel who wants to fly some day.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2812, + "name": "Cam the Camel", + "examine": "A camel who likes to rest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2813, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2814, + "name": "Alice the Camel", + "examine": "A camel who\u0027s come from the south.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2815, + "name": "Neferti the Camel", + "examine": "A camel who wants to see the world.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2816, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2817, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2818, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2819, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2820, + "name": "Ali the Smith", + "examine": "One of Ali Morrisane\u0027s associates. Has a big hammer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2821, + "name": "Ali the Farmer", + "examine": "One of Ali Morrisane\u0027s associates. Carries a rake.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2822, + "name": "Ali the Tailor", + "examine": "One of Ali Morrisane\u0027s associates. Those scissors look sharp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2823, + "name": "Ali the Guard", + "examine": "One of Ali Morrisane\u0027s associates. Looks like he\u0027s seen a lot of fighting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2824, + "name": "Ellis", + "examine": "Manufacturer of fine leathers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2825, + "name": "Pirate Pete", + "examine": "A shifty-looking character.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2826, + "name": "Pirate Pete", + "examine": "A shifty-looking character.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2827, + "name": "Captain Braindeath", + "examine": "A shabby-looking leader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2828, + "name": "50% Luke", + "examine": "Most of an angry, undead sea scoundrel.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2829, + "name": "Davey", + "examine": "Looks like he\u0027s taking a break.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2830, + "name": "Captain Donnie", + "examine": "I wonder if it was all the \u0027rum\u0027 that pickled him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2831, + "name": "Zombie protester", + "examine": "Sticking it to \u0027The Man\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2832, + "name": "Zombie protester", + "examine": "Sticking it to \u0027The Man\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2833, + "name": "Zombie protester", + "examine": "Sticking it to \u0027The Man\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2834, + "name": "Zombie protester", + "examine": "Sticking it to \u0027The Man\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2835, + "name": "Zombie protester", + "examine": "Sticking it to \u0027The Man\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2836, + "name": "Zombie protester", + "examine": "Sticking it to \u0027The Man\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2837, + "name": "Zombie pirate", + "examine": "An undead sea scoundrel.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2838, + "name": "Zombie pirate", + "examine": "An undead sea scoundrel.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2839, + "name": "Zombie pirate", + "examine": "An undead sea scoundrel.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2840, + "name": "Zombie pirate", + "examine": "An undead sea scoundrel.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2841, + "name": "Zombie pirate", + "examine": "An undead sea scoundrel.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2842, + "name": "Zombie pirate", + "examine": "An undead sea scoundrel.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2843, + "name": "Zombie swab", + "examine": "He talks a good fight.", + "respawn": 10, + "combat": 55, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2844, + "name": "Zombie swab", + "examine": "He talks a good fight.", + "respawn": 10, + "combat": 55, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2845, + "name": "Zombie swab", + "examine": "He talks a good fight.", + "respawn": 10, + "combat": 55, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2846, + "name": "Zombie swab", + "examine": "He talks a good fight.", + "respawn": 10, + "combat": 55, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2847, + "name": "Zombie swab", + "examine": "He talks a good fight.", + "respawn": 10, + "combat": 55, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2848, + "name": "Zombie swab", + "examine": "He talks a good fight.", + "respawn": 10, + "combat": 55, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2849, + "name": "Evil spirit", + "examine": "The pun was intended.", + "respawn": 10, + "combat": 150, + "hitpoints": 90, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2850, + "name": "Fever spider", + "examine": "A bunch of legs, eyes and teeth.", + "respawn": 10, + "combat": 49, + "hitpoints": 40, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2851, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2852, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2853, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2854, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2855, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2856, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2857, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2858, + "name": "Brewer", + "examine": "A worker in the brewery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2859, + "name": "Fishing spot", + "examine": "It looks like there might be squid swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2860, + "name": "Karamthulhu", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2861, + "name": "Karamthulhu", + "examine": "Looks after your Farming tools.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2862, + "name": "Death", + "examine": "Do not fear the Reaper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2863, + "name": "Zombie", + "examine": "A zombie. He looks pretty dead.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2864, + "name": "Most of a Zombie", + "examine": "Legs 11, good at bingo but bad at doing handstands.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2865, + "name": "Most of a Zombie", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2866, + "name": "Zombie", + "examine": "A zombie, with a bit of a bald spot.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2867, + "name": "Most of a Zombie", + "examine": "A zombie, with a major bald spot!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2868, + "name": "Zombie Head", + "examine": "I bet I could grab that...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2869, + "name": "Zombie", + "examine": "A zombie, he could probably do with a bath.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2870, + "name": "Half-Zombie", + "examine": "Half the man he used to be.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2871, + "name": "Other Half-Zombie", + "examine": "Clearly someones better half.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2872, + "name": "Child", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2873, + "name": "Child", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2874, + "name": "Child", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2875, + "name": "Child", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2876, + "name": "Child", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2877, + "name": "Child", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2878, + "name": "Zombie", + "examine": "A zombie, he could probably do with a bath.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2879, + "name": "Bardur", + "examine": "A Fremennik warrior, hard at work.", + "respawn": 10, + "combat": 94, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2880, + "name": "Dagannoth fledgeling", + "examine": "A knee-high horror from the ocean depths...", + "respawn": 10, + "combat": 70, + "hitpoints": 100, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2881, + "name": "Dagannoth Supreme", + "examine": "The dagannoth king responsible for the death of the Bukalla.", + "respawn": 60, + "combat": 303, + "hitpoints": 255, + "maxHit": 38, + "size": 3, + "attackSpeed": 5000, + "attackAnim": 2853, + "defenceAnim": 2852, + "deathAnim": 2856, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2882, + "name": "Dagannoth Prime", + "examine": "A legendary dagannoth king, rumoured to fly on the North winds.", + "respawn": 10, + "combat": 303, + "hitpoints": 255, + "maxHit": 67, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2853, + "defenceAnim": 2852, + "deathAnim": 2856, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2883, + "name": "Dagannoth Rex", + "examine": "Firstborn of the legendary dagannoth kings.", + "respawn": 10, + "combat": 303, + "hitpoints": 255, + "maxHit": 36, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2853, + "defenceAnim": 2852, + "deathAnim": 2856, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 2884, + "name": "Wallasalki", + "examine": "A fearsome magical water creature.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2885, + "name": "Giant Rock Crab", + "examine": "No one likes crabs... especially really big ones!", + "respawn": 10, + "combat": 137, + "hitpoints": 240, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 312, + "defenceMelee": 312, + "defenceRange": 312, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 2886, + "name": "Boulder", + "examine": "Heavy rock!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2887, + "name": "Dagannoth", + "examine": "A spiney horror from the ocean depths...", + "respawn": 10, + "combat": 88, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2888, + "name": "Dagannoth", + "examine": "A darkened horror from the ocean depths...", + "respawn": 10, + "combat": 90, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2889, + "name": "Rock lobster", + "examine": "It wasn\u0027t a rock... it was a rock lobster!", + "respawn": 10, + "combat": 127, + "hitpoints": 150, + "maxHit": 19, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 195, + "defenceMelee": 195, + "defenceRange": 195, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2890, + "name": "Rock", + "examine": "A Rock.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2891, + "name": "Suspicious water", + "examine": "If I didn\u0027t know better, I\u0027d swear there\u0027s something in there...", + "respawn": 10, + "combat": 34, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2892, + "name": "Spinolyp", + "examine": "A sneaky, spiny, subterranean sea-dwelling scamp.", + "respawn": 10, + "combat": 76, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2893, + "name": "Suspicious water", + "examine": "If I didn\u0027t know better, I\u0027d swear there\u0027s something in there...", + "respawn": 10, + "combat": 34, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2894, + "name": "Spinolyp", + "examine": "A sneaky, spiny, subterranean sea-dwelling scamp.", + "respawn": 10, + "combat": 76, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2895, + "name": "Suspicious water", + "examine": "If I didn\u0027t know better, I\u0027d swear there\u0027s something in there...", + "respawn": 10, + "combat": 34, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2896, + "name": "Spinolyp", + "examine": "A sneaky, spiny, subterranean sea-dwelling scamp.", + "respawn": 10, + "combat": 76, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 2897, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2898, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2899, + "name": "Father Reen", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2900, + "name": "Father Reen", + "examine": "Looks a bit lost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2901, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2902, + "name": "Father Badden", + "examine": "He looks very pious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2903, + "name": "Father Badden", + "examine": "He looks very pious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2904, + "name": "Denath", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2905, + "name": "Denath", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2906, + "name": "Eric", + "examine": "He looks nervous.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2907, + "name": "Eric", + "examine": "He looks nervous.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2908, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2909, + "name": "Evil Dave", + "examine": "He seems to like wearing black.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2910, + "name": "Evil Dave", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2911, + "name": "Matthew", + "examine": "He looks confused.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2912, + "name": "Matthew", + "examine": "He looks confused.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2913, + "name": "Jennifer", + "examine": "She looks enigmatic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2914, + "name": "Jennifer", + "examine": "She looks enigmatic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2915, + "name": "Tanya", + "examine": "She looks scary.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2916, + "name": "Tanya", + "examine": "She looks scary.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2917, + "name": "Patrick", + "examine": "He looks enthusiastic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2918, + "name": "Patrick", + "examine": "He looks enthusiastic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2919, + "name": "Agrith Naar", + "examine": "A summoned demon.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2920, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2921, + "name": "Sand storm", + "examine": "A nasty sand storm.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2922, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2923, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2924, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2925, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2926, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2927, + "name": "Clay golem", + "examine": "An animated clay statue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2928, + "name": "Clay golem", + "examine": "An animated clay statue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2929, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2930, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2931, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2932, + "name": "Jorral", + "examine": "A sensible looking man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2933, + "name": "Null", + "examine": "Sullen looking Ghost Woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2934, + "name": "Melina", + "examine": "Sullen looking Ghost Woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2935, + "name": "Melina", + "examine": "Sullen looking Ghost Woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2936, + "name": "Null", + "examine": "Not a happy ghost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2937, + "name": "Droalak", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2938, + "name": "Droalak", + "examine": "Not a happy ghost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2939, + "name": "Dron", + "examine": "He looks scary.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2940, + "name": "Blanin", + "examine": "A docile warrior", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2941, + "name": "The Beast", + "examine": "Who ate all the rats?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2942, + "name": "Bellemorde", + "examine": "Unkempt and a bit smelly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2943, + "name": "Pox", + "examine": "Not the healthiest cat you\u0027ve ever seen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2944, + "name": "Pox", + "examine": "Busy hunting rats.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2945, + "name": "Bones", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2946, + "name": "Grimesquit", + "examine": "Cracking personality.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2947, + "name": "Phingspet", + "examine": "Lovely girl, shame about the smell.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2948, + "name": "Hooknosed Jack", + "examine": "Obviously punches above his weight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2949, + "name": "Jimmy Dazzler", + "examine": "Looks rich like an actor of sorts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2950, + "name": "The Face", + "examine": "Once beautiful, now repugnant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2951, + "name": "Felkrash", + "examine": "What is she looking at?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2952, + "name": "Smokin\u0027 Joe", + "examine": "What is he?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2953, + "name": "Ceril Carnillean", + "examine": "Head of the Carnillean household.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2954, + "name": "Councillor Halgrive", + "examine": "An official of Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2955, + "name": "Spice seller", + "examine": "Has a very exotic aroma about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2956, + "name": "Fur trader", + "examine": "Knows how to keep warm in the winter.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2957, + "name": "Gem merchant", + "examine": "Seems very well off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2958, + "name": "Silver merchant", + "examine": "Looks fairly well fed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2959, + "name": "Silk merchant", + "examine": "Seems very well off.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2960, + "name": "Zenesha", + "examine": "Sells top quality plate mail armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2961, + "name": "Ali Morrisane", + "examine": "A bazaar merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2962, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2963, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2964, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2965, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2966, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2967, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2968, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2969, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2970, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2971, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2972, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2973, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2974, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2975, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2976, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2977, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2978, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2979, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2980, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2981, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2982, + "name": "King rat", + "examine": "The master of all rats.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2983, + "name": "Turbogroomer", + "examine": "Poorly named for such a scraggly cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2984, + "name": "Pusskins", + "examine": "Not a soft touch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2985, + "name": "Loki", + "examine": "A tricky bag of troublesome fluff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2986, + "name": "Captain Tom", + "examine": "A not-so friendly, not-so little cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2987, + "name": "Treacle", + "examine": "A sticky character.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2988, + "name": "Mittens", + "examine": "A fully grown feline.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2989, + "name": "Claude", + "examine": "Great set of mits for a young one.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2990, + "name": "Topsy", + "examine": "Cute and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2991, + "name": "Rauborn", + "examine": "Barman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2992, + "name": "Vaeringk", + "examine": "Black Guard off duty, I hope.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2993, + "name": "Oxi", + "examine": "The rat keeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2994, + "name": "Fior", + "examine": "Happy not to be working.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2995, + "name": "Sagira", + "examine": "Well tanned for someone who lives under a mountain.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2996, + "name": "Anleif", + "examine": "Prim and proper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2997, + "name": "Gertrude\u0027s cat", + "examine": "A friendly feline?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2998, + "name": "Gambler", + "examine": "Very well to do. I wonder what he\u0027s doing here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 2999, + "name": "Gambler", + "examine": "He has a tortured look in his eye.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3000, + "name": "Barman", + "examine": "Definitely overworked.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3001, + "name": "Gambler", + "examine": "Rich.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3002, + "name": "Gambler", + "examine": "Poor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3003, + "name": "Gambler", + "examine": "Poor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3004, + "name": "Gambler", + "examine": "Poor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3005, + "name": "Gambler", + "examine": "Poor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3006, + "name": "Gambler", + "examine": "Poor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3007, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3008, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3009, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3010, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3011, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3012, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3013, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3014, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3015, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3016, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3017, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3018, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3019, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3020, + "name": "Rug Merchant", + "examine": "A carpet merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3021, + "name": "Tool Leprechaun", + "examine": "Looks after your Farming tools.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3022, + "name": "Genie", + "examine": "Phenomenal cosmic powers, itty-bitty living space.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3023, + "name": "Nirrie", + "examine": "An elemental waterspirit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3024, + "name": "Tirrie", + "examine": "An elemental waterspirit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3025, + "name": "Hallak", + "examine": "An elemental waterspirit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3026, + "name": "Black golem", + "examine": "An animated clay statue.", + "respawn": 10, + "combat": 75, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3027, + "name": "White golem", + "examine": "An animated clay statue.", + "respawn": 10, + "combat": 75, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3028, + "name": "Grey golem", + "examine": "An animated clay statue.", + "respawn": 10, + "combat": 75, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3029, + "name": "Ghaslor the Elder", + "examine": "The oldest man in Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3030, + "name": "Ali the Carter", + "examine": "A water salesman from Pollnivneach.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3031, + "name": "Usi", + "examine": "A citizen of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3032, + "name": "Nkuku", + "examine": "A citizen of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3033, + "name": "Garai", + "examine": "A citizen of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3034, + "name": "Habibah", + "examine": "A citizen of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3035, + "name": "Meskhenet", + "examine": "A citizen of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3036, + "name": "Zahra", + "examine": "A citizen of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3037, + "name": "Zahur", + "examine": "A herbalist... sells herbs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3038, + "name": "Seddu", + "examine": "An armour merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3039, + "name": "Kazemde", + "examine": "A seller of many things.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3040, + "name": "Awusah the Mayor", + "examine": "The Mayor of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3041, + "name": "Tarik", + "examine": "The mayor\u0027s guard.", + "respawn": 10, + "combat": 21, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3042, + "name": "Poltenip", + "examine": "The mayor\u0027s guard.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3043, + "name": "Radat", + "examine": "The mayor\u0027s guard.", + "respawn": 10, + "combat": 21, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3044, + "name": "Shiratti the Custodian", + "examine": "Custodian of the shrine to Elidinis.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3045, + "name": "Rokuh", + "examine": "A seller of tasty choc ices.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3046, + "name": "Nardah Banker", + "examine": "A banker of Nardah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3047, + "name": "Target", + "examine": "Needs to be shot with a ranged weapon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3048, + "name": "Target", + "examine": "Needs to be shot with a bow and arrow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3049, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3050, + "name": "Larxus", + "examine": "Not the smartest of butlers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3051, + "name": "Mystery figure", + "examine": "A mysterious watcher...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3052, + "name": "Mystery figure", + "examine": "A mysterious watcher...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3053, + "name": "Mystery figure", + "examine": "A mysterious watcher...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3054, + "name": "Mystery figure", + "examine": "A mysterious watcher...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3055, + "name": "Mystery figure", + "examine": "A mysterious watcher...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3056, + "name": "Mystery figure", + "examine": "A mysterious watcher...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3057, + "name": "Earth Warrior Champion", + "examine": "Champion of the earth warriors.", + "respawn": 10, + "combat": 102, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3058, + "name": "Giant Champion", + "examine": "Champion of the giants.", + "respawn": 10, + "combat": 56, + "hitpoints": 56, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 72, + "defenceMelee": 72, + "defenceRange": 72, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3059, + "name": "Ghoul Champion", + "examine": "Champion of the ghouls.", + "respawn": 10, + "combat": 85, + "hitpoints": 53, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 68, + "defenceMelee": 68, + "defenceRange": 68, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3060, + "name": "Goblin Champion", + "examine": "Champion of the goblins.", + "respawn": 10, + "combat": 24, + "hitpoints": 32, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3061, + "name": "Hobgoblin Champion", + "examine": "Champion of the hobgoblins.", + "respawn": 10, + "combat": 56, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3062, + "name": "Imp Champion", + "examine": "Champion of the imps.", + "respawn": 10, + "combat": 14, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3063, + "name": "Jogre Champion", + "examine": "Champion of the jogres.", + "respawn": 10, + "combat": 107, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3064, + "name": "Lesser Demon Champion", + "examine": "Champion of the lesser demons.", + "respawn": 10, + "combat": 162, + "hitpoints": 114, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 148, + "defenceMelee": 148, + "defenceRange": 148, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3065, + "name": "Skeleton Champion", + "examine": "Champion of the skeletons.", + "respawn": 10, + "combat": 40, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3066, + "name": "Zombies Champion", + "examine": "Champion of the zombies.", + "respawn": 10, + "combat": 51, + "hitpoints": 0, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3067, + "name": "Leon d\u0027Cour", + "examine": "Champion of Champions!", + "respawn": 10, + "combat": 141, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3068, + "name": "Skeletal Wyvern", + "examine": "A very dangerous pile of animated wyvern bones.", + "respawn": 10, + "combat": 140, + "hitpoints": 200, + "maxHit": 20, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3069, + "name": "Skeletal Wyvern", + "examine": "A very dangerous pile of animated wyvern bones.", + "respawn": 10, + "combat": 140, + "hitpoints": 200, + "maxHit": 20, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3070, + "name": "Skeletal Wyvern", + "examine": "A very dangerous pile of animated wyvern bones.", + "respawn": 10, + "combat": 140, + "hitpoints": 200, + "maxHit": 20, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3071, + "name": "Skeletal Wyvern", + "examine": "A very dangerous pile of animated wyvern bones.", + "respawn": 10, + "combat": 140, + "hitpoints": 200, + "maxHit": 20, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3072, + "name": "Ice giant", + "examine": "He\u0027s got icicles in his beard.", + "respawn": 10, + "combat": 53, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3073, + "name": "Ice warrior", + "examine": "A cold-hearted elemental warrior.", + "respawn": 10, + "combat": 57, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3074, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3075, + "name": "Illegal Monk", + "examine": "One of the illegal bretheren of Wildy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3076, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3077, + "name": "Dead Monk", + "examine": "A recently deceased follower of Saradomin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3078, + "name": "High Priest", + "examine": "High Priest of Entrana.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3079, + "name": "Monk", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3080, + "name": "Monk", + "examine": "A holy man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3081, + "name": "Assassin", + "examine": "A stealthy assassin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3082, + "name": "Rosie", + "examine": "An effervescent elfin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3083, + "name": "Sorcha", + "examine": "Seriously sprightly even for a sprite.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3084, + "name": "Cait", + "examine": "A frenzied fey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3085, + "name": "Cormac", + "examine": "Too volatile for his own good.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3086, + "name": "Fionn", + "examine": "One of Diango\u0027s itinerant pixies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3087, + "name": "Donnacha", + "examine": "One of Diango\u0027s itinerant pixies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3088, + "name": "Ronan", + "examine": "One of Diango\u0027s itinerant pixies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3089, + "name": "", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3090, + "name": "", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3091, + "name": "", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3092, + "name": "Hooded Stranger", + "examine": "A strange hooded... stranger?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3093, + "name": "Null", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3094, + "name": "Flying Book", + "examine": "The book moves by itself!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3095, + "name": "Flying Book", + "examine": "The book moves by itself!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3096, + "name": "Pizzaz Hat", + "examine": "A talking Hat!", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3097, + "name": "Entrance Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3098, + "name": "Telekinetic Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3099, + "name": "Alchemy Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3100, + "name": "Enchantment Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3101, + "name": "Graveyard Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3102, + "name": "Maze Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3103, + "name": "Rewards Guardian", + "examine": "A guardian of the arena.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3104, + "name": "Charmed Warrior", + "examine": "Equipment that moves by itself!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3105, + "name": "Charmed Warrior", + "examine": "Equipment that moves by itself!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3106, + "name": "Charmed Warrior", + "examine": "Equipment that moves by itself!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3107, + "name": "Charmed Warrior", + "examine": "Equipment that moves by itself!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3108, + "name": "Bert", + "examine": "Bert seems to be covered in sand from head to toe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3109, + "name": "Guard Captain", + "examine": "This guard looks rather drunk and has beer stains down his armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3110, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3111, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3112, + "name": "Sandy", + "examine": "Angry and stressed, he doesn\u0027t seem to have time for anything other than sand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3113, + "name": "Sandy", + "examine": "He seems to be distracted, looking out of the window at something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3114, + "name": "Mazion", + "examine": "Mazion seems to be covered in sand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3115, + "name": "Blaec", + "examine": "Blaec seems to be covered in sand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3116, + "name": "Reeso", + "examine": "Reeso seems to be covered in sand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3117, + "name": "Sandwich lady", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3118, + "name": "Prison Pete", + "examine": "He wants to escape!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3119, + "name": "Balloon Animal", + "examine": "It looks like an animal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3120, + "name": "Balloon Animal", + "examine": "It looks like an animal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3121, + "name": "Balloon Animal", + "examine": "It looks like an animal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3122, + "name": "Balloon Animal", + "examine": "It looks like an animal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3123, + "name": "Simon Templeton", + "examine": "He looks like he\u0027s seen the inside of a few tombs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3124, + "name": "Pyramid block", + "examine": "A pyramid block.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3125, + "name": "Pyramid block", + "examine": "A pyramid block.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3126, + "name": "Pentyn", + "examine": "He\u0027s been trapped here for thousands of years.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3127, + "name": "Aristarchus", + "examine": "A travelling scholar from Menaphos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3128, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 13, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3129, + "name": "Boneguard", + "examine": "A spirit is trapped within it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3130, + "name": "Pile of bones", + "examine": "These used to be alive.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3131, + "name": "Desert Spirit", + "examine": "It was trapped inside the boneguard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3132, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3133, + "name": "Crust of ice", + "examine": "Very thick, and very cold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3134, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3135, + "name": "Furnace grate", + "examine": "It seems to be blocked.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3136, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3137, + "name": "Enakhra", + "examine": "A mysterious hooded woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3138, + "name": "Enakhra", + "examine": "Who - or what - is she?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3139, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3140, + "name": "Boneguard", + "examine": "A spirit is trapped within it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3141, + "name": "Akthanakos", + "examine": "He\u0027s been freed from the boneguard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3142, + "name": "Akthanakos", + "examine": "Just who is he, anyway?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3143, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3144, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3145, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3146, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3147, + "name": "Lazim", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3148, + "name": "Enakhra", + "examine": "A mysterious hooded woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3149, + "name": "Akthanakos", + "examine": "A man with the head of a camel.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3150, + "name": "Knight", + "examine": "He\u0027s wearing heavy armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3151, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3152, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3153, + "name": "Harpie Bug Swarm", + "examine": "A swarm of bugs.", + "respawn": 10, + "combat": 46, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3154, + "name": "Count Draynor", + "examine": "Stop looking and run!", + "respawn": 10, + "combat": 34, + "hitpoints": 0, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3155, + "name": "Bill Teach", + "examine": "Bill Teach the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3156, + "name": "Bill Teach", + "examine": "Bill Teach the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3157, + "name": "Bill Teach", + "examine": "Bill Teach the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3158, + "name": "Bill Teach", + "examine": "Bill Teach the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3159, + "name": "Bill Teach", + "examine": "Bill Teach the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3160, + "name": "Bill Teach", + "examine": "Bill Teach the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3161, + "name": "Charley", + "examine": "\u0027Two Feet\u0027 Charley.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3162, + "name": "Smith", + "examine": "Smithing Smith.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3163, + "name": "Joe", + "examine": "Harpoon Joe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3164, + "name": "Mama", + "examine": "Mama La\u0027Fiette.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3165, + "name": "Mama", + "examine": "Mama La\u0027Fiette.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3166, + "name": "Mike", + "examine": "Dodgy Mike.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3167, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3168, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3169, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3170, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3171, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3172, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3173, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3174, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3175, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3176, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3177, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3178, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3179, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3180, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3181, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3182, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3183, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3184, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3185, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3186, + "name": "Pirate", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3187, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3188, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3189, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3190, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3191, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3192, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3193, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3194, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3195, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3196, + "name": "Pirate", + "examine": "An enemy pirate.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3197, + "name": "Gull", + "examine": "A sea bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3198, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3199, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3200, + "name": "Chaos Elemental", + "examine": "pUre A cHaOs of crEatuRe!", + "respawn": 10, + "combat": 305, + "hitpoints": 250, + "maxHit": 32, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 325, + "defenceMelee": 325, + "defenceRange": 325, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3201, + "name": "Killerwatt", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 55, + "hitpoints": 51, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 66, + "defenceMelee": 66, + "defenceRange": 66, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3202, + "name": "Killerwatt", + "examine": "A ball of electrical energy.", + "respawn": 10, + "combat": 55, + "hitpoints": 51, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 66, + "defenceMelee": 66, + "defenceRange": 66, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3203, + "name": "Storm Cloud", + "examine": "A very small storm!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3204, + "name": "Storm Cloud", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3205, + "name": "Romily Weaklax", + "examine": "A family baker, from the North.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3206, + "name": "Priest", + "examine": "A cave-goblin sniper!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3207, + "name": "Pious Pete", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3208, + "name": "Taper", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3209, + "name": "Elena", + "examine": "She looks concerned.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3210, + "name": "Alrena", + "examine": "She looks concerned.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3211, + "name": "Alrena", + "examine": "She looks concerned.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3212, + "name": "Bravek", + "examine": "The city warder of West Ardougne.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3213, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3214, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3215, + "name": "Elena", + "examine": "She doesn\u0027t look too happy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3216, + "name": "Mourner", + "examine": "A mourner, or plague healer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3217, + "name": "Kaylee", + "examine": "Works in the Rising Sun.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3218, + "name": "Tina", + "examine": "Works in the Rising Sun.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3219, + "name": "Dwarf", + "examine": "Loves mining.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3220, + "name": "Dwarf", + "examine": "Loves mining.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3221, + "name": "Dwarf", + "examine": "Loves mining.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3222, + "name": "Drunken man", + "examine": "One of Wildy\u0027s many citizens, currently incapacitated by alcohol.", + "respawn": 10, + "combat": 3, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 3223, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3224, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3225, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens. He looks worried about something.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3226, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3227, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens. She looks rich.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3228, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3229, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3230, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 19, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3231, + "name": "Guard", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3232, + "name": "Guard", + "examine": "Keeping an eye out for threats to the city.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3233, + "name": "Guard", + "examine": "Keeping an eye out for threats to the city.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3234, + "name": "Gardener", + "examine": "An old gardener.", + "respawn": 10, + "combat": 3, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3235, + "name": "Apprentice workman", + "examine": "He\u0027s learning a trade.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3236, + "name": "Workman", + "examine": "A busy workman", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3237, + "name": "\u0027Cuffs\u0027", + "examine": "He looks a bit dodgy.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3238, + "name": "Narf", + "examine": "Looks unpleasant.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3239, + "name": "Rusty", + "examine": "Seems to be loitering.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3240, + "name": "Jeff", + "examine": "Untrustworthy.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3241, + "name": "Guard", + "examine": "He\u0027s keeping an eye out.", + "respawn": 10, + "combat": 19, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3242, + "name": "Dark wizard", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 23, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3243, + "name": "Dark wizard", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 22, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3244, + "name": "Dark wizard", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 11, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3245, + "name": "Dark wizard", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 11, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3246, + "name": "Barbarian", + "examine": "Alberich, a fierce barbarian warrior.", + "respawn": 10, + "combat": 17, + "hitpoints": 24, + "maxHit": 3, + "size": 1, + "attackSpeed": 7000, + "attackAnim": 2067, + "defenceAnim": 1666, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 31, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3247, + "name": "Barbarian", + "examine": "Fafner, a tough barbarian warrior.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 2, + "size": 1, + "attackSpeed": 7000, + "attackAnim": 406, + "defenceAnim": 410, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 23, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3248, + "name": "Barbarian", + "examine": "Fasolt, a strong barbarian warrior.", + "respawn": 10, + "combat": 17, + "hitpoints": 24, + "maxHit": 3, + "size": 1, + "attackSpeed": 7000, + "attackAnim": 2067, + "defenceAnim": 1666, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 31, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3249, + "name": "Barbarian", + "examine": "Siegmund, a guard in the Barbarian Village.", + "respawn": 10, + "combat": 17, + "hitpoints": 24, + "maxHit": 3, + "size": 1, + "attackSpeed": 7000, + "attackAnim": 407, + "defenceAnim": 410, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 31, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3250, + "name": "Barbarian", + "examine": "Siegfried, a young guard in the Barbarian Village.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3251, + "name": "Barbarian", + "examine": "Lydspor, a well-travelled barbarian warrior.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3252, + "name": "Barbarian", + "examine": "Hagen, a guard in the Barbarian Village.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3253, + "name": "Barbarian", + "examine": "Minarch, a barbarian who likes his beer.", + "respawn": 10, + "combat": 17, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3254, + "name": "Hunding", + "examine": "Likes a good fight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3255, + "name": "Barbarian", + "examine": "Wotan, a sturdy barbarian warrior.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3256, + "name": "Barbarian", + "examine": "Acelin, a guard in the Barbarian Village.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3257, + "name": "Barbarian", + "examine": "Adelino, a barbarian warrior with a big axe.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3258, + "name": "Barbarian", + "examine": "Adolpho, a barbarian warrior with a warhammer.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3259, + "name": "Barbarian", + "examine": "Aitan, a barbarian archer.", + "respawn": 10, + "combat": 15, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3260, + "name": "Barbarian", + "examine": "Brunnhilde, a fierce barbarian warrior.", + "respawn": 10, + "combat": 17, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3261, + "name": "Barbarian", + "examine": "Gutrune, a mighty barbarian warrior.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3262, + "name": "Barbarian", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 10, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3263, + "name": "Barbarian", + "examine": "Sieglinde, a muscular barbarian warrior.", + "respawn": 10, + "combat": 9, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3264, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3265, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3266, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3267, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3268, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3269, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3270, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3271, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3272, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3273, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3274, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 11, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3275, + "name": "Dwarf", + "examine": "A dwarven worker.", + "respawn": 10, + "combat": 7, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3276, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3277, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3278, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3279, + "name": "Black Guard", + "examine": "A member of the Black Guard, a special division of the dwarven army.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3280, + "name": "Engineering assistant", + "examine": "He looks busy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3281, + "name": "Engineering assistant", + "examine": "He\u0027s wandering around aimlessly with a box of spare parts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3282, + "name": "Engineer", + "examine": "He\u0027s building a cannon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3283, + "name": "Squirrel", + "examine": "Bushy tail!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3284, + "name": "Squirrel", + "examine": "Likes nuts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3285, + "name": "Squirrel", + "examine": "Shave the tail, and you\u0027ve got a rat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3286, + "name": "Raccoon", + "examine": "A raccoon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3287, + "name": "Raccoon", + "examine": "A raccoon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3288, + "name": "Raccoon", + "examine": "A raccoon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3289, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3290, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3291, + "name": "Skeleton", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3292, + "name": "Witch", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3293, + "name": "Null", + "examine": "The hat\u0027s a dead give away.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3294, + "name": "Dwarf", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3295, + "name": "Dwarf", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3296, + "name": "Swan", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3297, + "name": "Black swan", + "examine": "A rare bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3298, + "name": "Sweeper", + "examine": "Keeps this magic area tidy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3299, + "name": "Martin the Master Gardener", + "examine": "A master at gardening.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3300, + "name": "Frog", + "examine": "A magical frog.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3301, + "name": "Storm cloud", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3302, + "name": "Co-ordinator", + "examine": "Manages the fairies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3303, + "name": "Fairy Nuff", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3304, + "name": "Fairy Godfather", + "examine": "I\u0027m gonna make him an offer he can\u0027t refuse.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3305, + "name": "Slim Louie", + "examine": "How am I funny - like a clown?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3306, + "name": "Fat Rocco", + "examine": "As far back as I can remember, I always wanted to be a gangster.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3307, + "name": "Gatekeeper", + "examine": "Guardian of the market gate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3308, + "name": "Zandar Horfyre", + "examine": "A practitioner of dark arts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3309, + "name": "Cow", + "examine": "Converts grass to beef.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3310, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3311, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3312, + "name": "Zanaris choir", + "examine": "They\u0027re going to sing to you!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3313, + "name": "Tanglefoot", + "examine": "A walking thorn bush!", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3314, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3315, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3316, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3317, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3318, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3319, + "name": "Baby tanglefoot", + "examine": "An animated shrub.", + "respawn": 10, + "combat": 45, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3320, + "name": "Baby tanglefoot", + "examine": "An aggressive bush.", + "respawn": 10, + "combat": 45, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3321, + "name": "Gatekeeper", + "examine": "He\u0027s been posted here to prevent people entering a dangerous area.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3322, + "name": "Fairy chef", + "examine": "Likes to cook with mushrooms.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3323, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3324, + "name": "Draul Leptoc", + "examine": "This looks like an angry, aggressive man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3325, + "name": "Phillipa", + "examine": "A quiet, more reserved sort of lady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3326, + "name": "Martina Scorsby", + "examine": "A less enthusiastic ecclesiastic woman, she seems slightly tired.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3327, + "name": "Jeremy Clerksin", + "examine": "Rather more tired than most.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3328, + "name": "Tarquin", + "examine": "A dandy canoe man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3329, + "name": "Sigurd", + "examine": "His furs look very damp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3330, + "name": "Hari", + "examine": "Strange looking fella.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3331, + "name": "Barfy Bill", + "examine": "Looks a little green around the gills.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3332, + "name": "Trees", + "examine": "Trees and such.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3333, + "name": "Trees", + "examine": "Trees and such.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3334, + "name": "Cavemouth", + "examine": "A cave entrance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3335, + "name": "Bullrush", + "examine": "A bullrush.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3336, + "name": "Bullrush", + "examine": "A bullrush.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3337, + "name": "Cave Scenery", + "examine": "Cave bits.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3338, + "name": "Cave Scenery", + "examine": "Cave bits.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3339, + "name": "Cave Scenery", + "examine": "Cave bits.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3340, + "name": "Giant Mole", + "examine": "Holy Mole-y!", + "respawn": 10, + "combat": 230, + "hitpoints": 200, + "maxHit": 32, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 3341, + "name": "Baby Mole", + "examine": "I will call him, Mini Mole.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3342, + "name": "Baby Mole", + "examine": "Mooooooooooooole.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3343, + "name": "Baby Mole", + "examine": "Moley, moley, moley!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3344, + "name": "Fungi", + "examine": "A fun guy. No wait, that\u0027s awful. Plus it doesn\u0027t even make sense.", + "respawn": 10, + "combat": 74, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3345, + "name": "Fungi", + "examine": "A fun guy. No wait, that\u0027s awful. Plus it doesn\u0027t even make sense.", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3346, + "name": "Zygomite", + "examine": "A bouncy fungus.", + "respawn": 10, + "combat": 74, + "hitpoints": 65, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 84, + "defenceMelee": 84, + "defenceRange": 84, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3347, + "name": "Zygomite", + "examine": "A fun guy. No wait, that\u0027s awful..", + "respawn": 10, + "combat": 86, + "hitpoints": 75, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3348, + "name": "White Knight", + "examine": "A White Knight proselyte.", + "respawn": 10, + "combat": 38, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3349, + "name": "White Knight", + "examine": "A White Knight acolyte.", + "respawn": 10, + "combat": 39, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3350, + "name": "White Knight", + "examine": "A White Knight partisan.", + "respawn": 10, + "combat": 42, + "hitpoints": 55, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3351, + "name": "Genie", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3352, + "name": "Mysterious Old Man", + "examine": "A very strange old man...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3353, + "name": "Swarm", + "examine": "The Chosen Commander.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3354, + "name": "Cap\u0027n Hand", + "examine": "The Chosen Commander.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3355, + "name": "Rick Turpentine", + "examine": "The Chosen Commander.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3356, + "name": "Niles", + "examine": "The brother of Miles and Giles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3357, + "name": "Miles", + "examine": "The brother of Niles and Giles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3358, + "name": "Giles", + "examine": "The brother of Niles and Miles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3359, + "name": "Dr Jekyll", + "examine": "The Chosen Commander.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3360, + "name": "Mr Hyde", + "examine": "The Chosen Commander.", + "respawn": 10, + "combat": 14, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3361, + "name": "Mr Hyde", + "examine": "No longer the Chosen Commander.", + "respawn": 10, + "combat": 29, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3362, + "name": "Mr Hyde", + "examine": "No longer the Chosen Commander.", + "respawn": 10, + "combat": 49, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3363, + "name": "Mr Hyde", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 79, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3364, + "name": "Mr Hyde", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3365, + "name": "Mr Hyde", + "examine": "The Chosen Commander.", + "respawn": 10, + "combat": 159, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3366, + "name": "Evil Chicken", + "examine": "She looks badly hurt.", + "respawn": 10, + "combat": 19, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3367, + "name": "Evil Chicken", + "examine": "She looks badly hurt.", + "respawn": 10, + "combat": 38, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3368, + "name": "Evil Chicken", + "examine": "Her footing doesn\u0027t look very stable.", + "respawn": 10, + "combat": 69, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3369, + "name": "Evil Chicken", + "examine": "Back from the dead...again?", + "respawn": 10, + "combat": 81, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3370, + "name": "Evil Chicken", + "examine": "The famous cave-goblin adventurer.", + "respawn": 10, + "combat": 121, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3371, + "name": "Evil Chicken", + "examine": "A cave-goblin adventurer.", + "respawn": 10, + "combat": 159, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3372, + "name": "Sir Amik Varze", + "examine": "Leader of the White Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3373, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3374, + "name": "Sir Amik Varze", + "examine": "Leader of the White Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3375, + "name": "Evil Chicken", + "examine": "A fowl beast.", + "respawn": 10, + "combat": 159, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3376, + "name": "Baby black dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 83, + "hitpoints": 80, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3377, + "name": "K\u0027klik", + "examine": "Could this be one of the Elder dragons?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3378, + "name": "Evil Dave", + "examine": "He seems to like wearing black.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3379, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3380, + "name": "Evil Dave", + "examine": "He seems to like wearing black.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3381, + "name": "Doris", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3382, + "name": "Hell-Rat", + "examine": "Vermin from the underworld.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3383, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3384, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3385, + "name": "Gypsy", + "examine": "An old gypsy lady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3386, + "name": "Gypsy", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3387, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3388, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3389, + "name": "Pirate Pete", + "examine": "A shifty-looking character.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3390, + "name": "Mountain Dwarf", + "examine": "He looks short and grumpy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3391, + "name": "General Wartface", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3392, + "name": "General Bentnoze", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3393, + "name": " Varrock Guide", + "examine": "He provides new players with useful information.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3394, + "name": "Evil Dave", + "examine": "He seems to like wearing black.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3395, + "name": "Sir Amik Varze", + "examine": "Leader of the White Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3396, + "name": "Awowogei", + "examine": "A rather dapper little monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3397, + "name": "Awowogei", + "examine": "A rather dapper little monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3398, + "name": "Skrach Uglogwee", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3399, + "name": "Null", + "examine": "An ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3400, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3401, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3402, + "name": "An old Dwarf", + "examine": "A dwarven father figure!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3403, + "name": "Rohak", + "examine": "A dwarven father figure!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3404, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3405, + "name": "Rohak", + "examine": "A dwarven father figure!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3406, + "name": "Icefiend", + "examine": "A small ice demon.", + "respawn": 10, + "combat": 13, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3407, + "name": "General Wartface", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3408, + "name": "General Bentnoze", + "examine": "He tries to keep order around here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3409, + "name": "Null", + "examine": "A sentient plant - ready, willing and able to kill.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3410, + "name": "General Wartface", + "examine": "A sentient plant - ready, willing and able to kill.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3411, + "name": "Null", + "examine": "A sentient plant - ready, willing and able to kill.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3412, + "name": "General Bentnoze", + "examine": "A sentient plant - ready, willing and able to kill.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3413, + "name": "Goblin Cook", + "examine": "He\u0027s got funky socks, but he\u0027s still an ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3414, + "name": "Goblin Cook", + "examine": "More like a goblin cooked.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3415, + "name": "Goblin Cook", + "examine": "Half way up the wall is maybe not a naturally tenable position for a goblin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3416, + "name": "Pirate Pete", + "examine": "He looks a little piratey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3417, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3418, + "name": "Pirate Pete", + "examine": "He looks a little piratey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3419, + "name": "Mogre Guard", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3420, + "name": "Nung", + "examine": "An angry Ogre in a highly amusing hat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3421, + "name": "Crab", + "examine": "Nice claw!", + "respawn": 10, + "combat": 23, + "hitpoints": 19, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3422, + "name": "Mudskipper", + "examine": "Not the most beautiful fish in the sea.", + "respawn": 10, + "combat": 30, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3423, + "name": "Mudskipper", + "examine": "Not the most beautiful fish in the sea.", + "respawn": 10, + "combat": 31, + "hitpoints": 20, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3424, + "name": "Crab", + "examine": "Nice claw!", + "respawn": 10, + "combat": 21, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3425, + "name": "Fish", + "examine": "A Red Fantail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3426, + "name": "Fish", + "examine": "A Red Fantail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3427, + "name": "Fish", + "examine": "A Red Fantail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3428, + "name": "Fish", + "examine": "A Black Moor Fantail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3429, + "name": "Fish", + "examine": "A Black Moor Fantail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3430, + "name": "Fish", + "examine": "A Black Moor Fantail.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3431, + "name": "Fish", + "examine": "An Angel Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3432, + "name": "Fish", + "examine": "An Angel Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3433, + "name": "Fish", + "examine": "An Angel Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3434, + "name": "Fish", + "examine": "A Harlequin Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3435, + "name": "Fish", + "examine": "A Harlequin Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3436, + "name": "Fish", + "examine": "A Harlequin Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3437, + "name": "Fish", + "examine": "A Discus Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3438, + "name": "Fish", + "examine": "A Discus Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3439, + "name": "Fish", + "examine": "A Discus Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3440, + "name": "Fish", + "examine": "A Paradise Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3441, + "name": "Fish", + "examine": "A Paradise Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3442, + "name": "Fish", + "examine": "A Paradise Fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3443, + "name": "Fish", + "examine": "A shoal of Neon Tetra.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3444, + "name": "Fish", + "examine": "A shoal of Neon Tetra.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3445, + "name": "Fish", + "examine": "A shoal of Neon Tetra.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3446, + "name": "Fish", + "examine": "A shoal of Pearl Danio.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3447, + "name": "Fish", + "examine": "A shoal of Pearl Danio.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3448, + "name": "Fish", + "examine": "A shoal of Pearl Danio.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3449, + "name": " Varrock Guide", + "examine": "An aggressive humanoid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3450, + "name": "Null", + "examine": "An aggressive humanoid.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3451, + "name": " Varrock Guide", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3452, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3453, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3454, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3455, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3456, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3457, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3458, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3459, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3460, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3461, + "name": "? ? ? ?", + "examine": "Who could this be?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3462, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3463, + "name": "Skrach Uglogwee", + "examine": "An important looking ogre, he hits the table a lot.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3464, + "name": "Skrach Uglogwee", + "examine": "An important looking ogre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3465, + "name": "Null", + "examine": "A fat, angry Ogre in a highly amusing hat.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3466, + "name": "Rantz", + "examine": "He\u0027s full of pent-up aggression.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3467, + "name": "Rantz", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3468, + "name": "Rantz", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3469, + "name": "Null", + "examine": "Rantz\u0027s boat, operated by his kids Fycie and Bugs.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3470, + "name": "Null", + "examine": "Rantz\u0027s boat, operated by his kids Fycie and Bugs.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3471, + "name": "Ogre boat", + "examine": "Rantz\u0027s boat, operated by his kids Fycie and Bugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3472, + "name": "Ogre boat", + "examine": "Rantz\u0027s boat, operated by his kids Fycie and Bugs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3473, + "name": "Balloon Toad", + "examine": "A toad inflated with swamp gas and tied up like a balloon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3474, + "name": "Balloon Toad", + "examine": "A toad inflated with swamp gas and tied up like a balloon.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3475, + "name": "Balloon Toad", + "examine": "A quickly deflating balloon toad.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3476, + "name": "Jubbly bird", + "examine": "A large boisterous bird, a delicacy for ogres.", + "respawn": 10, + "combat": 9, + "hitpoints": 22, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3477, + "name": "Jubbly bird", + "examine": "A once boisterous bird, closer to being an ogre delicacy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3478, + "name": "King Awowogei", + "examine": "A rather dapper little monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3479, + "name": "Null", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3480, + "name": "King Awowogei", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3481, + "name": "Mizaru", + "examine": "He sees no evil.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3482, + "name": "Kikazaru", + "examine": "He hears no evil.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3483, + "name": "Iwazaru", + "examine": "He speaks no evil.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3484, + "name": "Big Snake", + "examine": "A big snake.", + "respawn": 10, + "combat": 84, + "hitpoints": 0, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 3485, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3486, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3487, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3488, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3489, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3490, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3491, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 75, + "hitpoints": 140, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3492, + "name": "Culinaromancer", + "examine": "A demented evil wizard who specialises in food spells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3493, + "name": "Agrith-Na-Na", + "examine": "Big, scary, angry and a good source of energy.", + "respawn": 10, + "combat": 146, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3494, + "name": "Flambeed", + "examine": "Will give you a beating as well as indigestion.", + "respawn": 10, + "combat": 149, + "hitpoints": 210, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 273, + "defenceMelee": 273, + "defenceRange": 273, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3495, + "name": "Karamel", + "examine": "Pure evil lightly whipped with a juicy cherry on top.", + "respawn": 10, + "combat": 136, + "hitpoints": 240, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 312, + "defenceMelee": 312, + "defenceRange": 312, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3496, + "name": "Dessourt", + "examine": "Bad for your teeth...and the rest of your body too.", + "respawn": 10, + "combat": 121, + "hitpoints": 140, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3497, + "name": "Gelatinnoth Mother", + "examine": "Deadly AND fruity!", + "respawn": 10, + "combat": 130, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3498, + "name": "Gelatinnoth Mother", + "examine": "Deadly AND fruity!", + "respawn": 10, + "combat": 130, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3499, + "name": "Gelatinnoth Mother", + "examine": "Deadly AND fruity!", + "respawn": 10, + "combat": 130, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3500, + "name": "Gelatinnoth Mother", + "examine": "Deadly AND fruity!", + "respawn": 10, + "combat": 130, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3501, + "name": "Gelatinnoth Mother", + "examine": "Deadly AND fruity!", + "respawn": 10, + "combat": 130, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3502, + "name": "Gelatinnoth Mother", + "examine": "Deadly AND fruity!", + "respawn": 10, + "combat": 130, + "hitpoints": 200, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3503, + "name": "Overgrown hellcat", + "examine": "A hellish not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3504, + "name": "Hellcat", + "examine": "A hellish pet cat!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3505, + "name": "Hell-kitten", + "examine": "A hellish little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3506, + "name": "Lazy hellcat", + "examine": "A hellish not-so-little pet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3507, + "name": "Wily hellcat", + "examine": "Wild and hellish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3508, + "name": "Leo", + "examine": "A lazy undertaker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3509, + "name": "Sorin", + "examine": "A flea infested, pale looking excuse of a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3510, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3511, + "name": "Wiskit", + "examine": "A flea infested, pale looking excuse of a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3512, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3513, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3514, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3515, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3516, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3517, + "name": "Gadderanks", + "examine": "A human supporter of the Vampyric overlords.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3518, + "name": "Gadderanks", + "examine": "A human supporter of the Vampyric overlords.", + "respawn": 10, + "combat": 35, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3519, + "name": "Gadderanks", + "examine": "A human supporter of the Vampyric overlords.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3520, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampire.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3521, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampire.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 3522, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampyre.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 3523, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampyre.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 3524, + "name": "Vampyre Juvinate", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 3525, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampyre.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 3526, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampyre, he looks really angry.", + "respawn": 10, + "combat": 64, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3527, + "name": "Held Vampyre Juvinate", + "examine": "A Juvinate vampyre, held in a powerful spell.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3528, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampyre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3529, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampyre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3530, + "name": "Mist", + "examine": "A billowing cloud of fine mist...it looks creepy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3531, + "name": "Vampyre Juvenile", + "examine": "He looks really hungry!", + "respawn": 10, + "combat": 45, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 3532, + "name": "Vampyre Juvenile", + "examine": "He looks really hungry!", + "respawn": 10, + "combat": 45, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 3533, + "name": "Vampyre Juvenile", + "examine": "He looks really hungry!", + "respawn": 10, + "combat": 45, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 3534, + "name": "Held Vampyre Juvenile", + "examine": "He looks really hungry!", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3535, + "name": "Ivan Strom", + "examine": "A member of the Myreque and an aspiring young priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3536, + "name": "Ivan Strom", + "examine": "A member of the Myreque and an aspiring young priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3537, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampire.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3538, + "name": "Vampyre Juvinate", + "examine": "An initiate juvenile vampire.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3539, + "name": "Veliaf Hurtz", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3540, + "name": "Elisabeta", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3541, + "name": "Aurel", + "examine": "A flea infested, pale looking excuse of a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3542, + "name": "Sorin", + "examine": "A flea infested, pale looking excuse of a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3543, + "name": "Luscion", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3544, + "name": "Sergiu", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3545, + "name": "Radu", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3546, + "name": "Grigore", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3547, + "name": "Ileana", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3548, + "name": "Valeria", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3549, + "name": "Emilia", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3550, + "name": "Florin", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3551, + "name": "Catalina", + "examine": "It\u0027s a village kid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3552, + "name": "Ivan", + "examine": "It\u0027s a village kid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3553, + "name": "Victor", + "examine": "It\u0027s a village kid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3554, + "name": "Helena", + "examine": "It\u0027s a village kid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3555, + "name": "Teodor", + "examine": "He tries to grow the crops in this area.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3556, + "name": "Marius", + "examine": "A bed ridden man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3557, + "name": "Gabriela", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3558, + "name": "Vladimir", + "examine": "An empty villager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3559, + "name": "Calin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3560, + "name": "Mihail", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3561, + "name": "Nicoleta", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3562, + "name": "Simona", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3563, + "name": "Vasile", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3564, + "name": "Razvan", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3565, + "name": "Luminata", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3566, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3567, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3568, + "name": "Cornelius", + "examine": "A citizen of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3569, + "name": "Cornelius", + "examine": "The sole banker of Burgh de Rott.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3570, + "name": "Benjamin", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3571, + "name": "Liam", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3572, + "name": "Miala", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3573, + "name": "Verak", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3574, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3575, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3576, + "name": "Juvinate", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 59, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3577, + "name": "Juvinate", + "examine": "It looks really hungry!", + "respawn": 10, + "combat": 90, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3578, + "name": "Juvinate", + "examine": "It looks really hungry!", + "respawn": 10, + "combat": 119, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3579, + "name": "Sheep", + "examine": "A Sheep?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3580, + "name": "Tentacle", + "examine": "I\u0027m glad I can\u0027t see the rest of it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3581, + "name": "Skeleton", + "examine": "He guards the dungeon with the faithfulness of the undead.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3582, + "name": "Guard dog", + "examine": "Beware of the dog!", + "respawn": 10, + "combat": 44, + "hitpoints": 49, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 63, + "defenceMelee": 63, + "defenceRange": 63, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3583, + "name": "Hobgoblin", + "examine": "He doesn\u0027t look very welcoming.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3584, + "name": "Troll", + "examine": "A pet Troll.", + "respawn": 10, + "combat": 91, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3585, + "name": "Huge spider", + "examine": "No spider could grow that big! It\u0027s unrealistic!", + "respawn": 10, + "combat": 81, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3586, + "name": "Hellhound", + "examine": "Good doggy...", + "respawn": 10, + "combat": 122, + "hitpoints": 116, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 150, + "defenceMelee": 150, + "defenceRange": 150, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3587, + "name": "Ogre", + "examine": "A large dim looking humanoid.", + "respawn": 10, + "combat": 53, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3588, + "name": "Baby red dragon", + "examine": "Young, but still dangerous.", + "respawn": 10, + "combat": 65, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3589, + "name": "Kalphite Soldier", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 85, + "hitpoints": 90, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 3590, + "name": "Steel dragon", + "examine": "Its scales seem to be made of steel.", + "respawn": 10, + "combat": 246, + "hitpoints": 210, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 273, + "defenceMelee": 273, + "defenceRange": 273, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3591, + "name": "Dagannoth", + "examine": "A darkened horror from the ocean depths.", + "respawn": 10, + "combat": 135, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3592, + "name": "Tok-Xil", + "examine": "I don\u0027t like the look of those spines...", + "respawn": 10, + "combat": 135, + "hitpoints": 10, + "maxHit": 14, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 2628, + "defenceAnim": 2629, + "deathAnim": 2630, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3593, + "name": "Demon", + "examine": "Arrgh! Look at its pointy teeth!", + "respawn": 10, + "combat": 82, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3594, + "name": "Rocnar", + "examine": "It\u0027s full of pent-up aggression.", + "respawn": 10, + "combat": 97, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3595, + "name": "Toy Soldier", + "examine": "Nice piece of crafting that...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3596, + "name": "Toy Doll", + "examine": "Nice piece of crafting that...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3597, + "name": "Toy Mouse", + "examine": "Nice piece of crafting that...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3598, + "name": "Clockwork cat", + "examine": "An amazing piece of crafting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3599, + "name": "Swamp snake", + "examine": "A large snake that thrives in swamps.", + "respawn": 10, + "combat": 80, + "hitpoints": 120, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3600, + "name": "Swamp snake", + "examine": "A large snake that thrives in swamps.", + "respawn": 10, + "combat": 109, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3601, + "name": "Swamp snake", + "examine": "A large snake that thrives in swamps.", + "respawn": 10, + "combat": 139, + "hitpoints": 130, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 169, + "defenceMelee": 169, + "defenceRange": 169, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3602, + "name": "Swamp snake", + "examine": "A dead snake that thrived in the swamp, until it met you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3603, + "name": "Dead swamp snake", + "examine": "A dead snake that thrived in the swamp, until it met you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3604, + "name": "Dead swamp snake", + "examine": "A dead snake that thrived in the swamp, until it met you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3605, + "name": "Dead swamp snake", + "examine": "A dead snake that thrived in the swamp, until it met you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3606, + "name": "Ghast", + "examine": "Arrghhh... A ghast!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3607, + "name": "Ghast", + "examine": "Arrghhh... A ghast!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3608, + "name": "Ghast", + "examine": "Arrghhh... A ghast!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3609, + "name": "Ghast", + "examine": "Arrghhh... A ghast!", + "respawn": 10, + "combat": 79, + "hitpoints": 116, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 150, + "defenceMelee": 150, + "defenceRange": 150, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3610, + "name": "Ghast", + "examine": "Arrghhh... A ghast!", + "respawn": 10, + "combat": 109, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3611, + "name": "Ghast", + "examine": "Arrghhh... A ghast!", + "respawn": 10, + "combat": 139, + "hitpoints": 160, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 208, + "defenceMelee": 208, + "defenceRange": 208, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3612, + "name": "Giant snail", + "examine": "Euew.", + "respawn": 10, + "combat": 80, + "hitpoints": 0, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3613, + "name": "Giant snail", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 109, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3614, + "name": "Giant snail", + "examine": "Euew.", + "respawn": 10, + "combat": 139, + "hitpoints": 0, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3615, + "name": "Riyl shadow", + "examine": "The shadowy remains of a long-departed soul.", + "respawn": 10, + "combat": 80, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3616, + "name": "Asyn shadow", + "examine": "The shadowy remains of a long-departed soul.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3617, + "name": "Shade", + "examine": "The shadowy remains of a long-departed soul.", + "respawn": 10, + "combat": 140, + "hitpoints": 110, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 143, + "defenceMelee": 143, + "defenceRange": 143, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3618, + "name": "Tentacle", + "examine": "I\u0027m glad I can\u0027t see the rest of it!", + "respawn": 10, + "combat": 99, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3619, + "name": "Head", + "examine": "I\u0027m glad I can\u0027t see the rest of it!", + "respawn": 10, + "combat": 140, + "hitpoints": 149, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 193, + "defenceMelee": 193, + "defenceRange": 193, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3620, + "name": "Head", + "examine": "I\u0027m glad I can\u0027t see the rest of it!", + "respawn": 10, + "combat": 140, + "hitpoints": 149, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 193, + "defenceMelee": 193, + "defenceRange": 193, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3621, + "name": "Tentacle", + "examine": "I\u0027m glad I can\u0027t see the rest of it!", + "respawn": 10, + "combat": 136, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3622, + "name": "Zombie", + "examine": "I wonder if he\u0027d let me borrow his hatchet?", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3623, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3624, + "name": "Smiddi Ryak", + "examine": "Small lonely child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3625, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3626, + "name": "Rolayne Twickit", + "examine": "Old lonely man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3627, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3628, + "name": "Jayene Kliyn", + "examine": "A Burgh de Rott female militia volunteer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3629, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3630, + "name": "Valantay Eppel", + "examine": "A Burgh de Rott male militia volunteer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3631, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3632, + "name": "Dalcian Fang", + "examine": "A retired but dangerous looking man. He seems to be hanging around.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3633, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3634, + "name": "Fyiona Fray", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3635, + "name": "Abidor Crank", + "examine": "The good samaritan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3636, + "name": "Spirit tree", + "examine": "A young sentient tree.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3637, + "name": "Spirit tree", + "examine": "An ancient sentient tree.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3638, + "name": "Null", + "examine": "She looks tired of waiting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3639, + "name": "Launa", + "examine": "She looks tired of waiting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3640, + "name": "Launa", + "examine": "She looks tired of arguing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3641, + "name": "Brana", + "examine": "An old man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3642, + "name": "Mawnis Burowgar", + "examine": "Neitiznot\u0027s Burgher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3643, + "name": "Tolna", + "examine": "Where did his boot go?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3644, + "name": "Tolna", + "examine": "A kid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3645, + "name": "Angry bear", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3646, + "name": "Angry unicorn", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3647, + "name": "Angry giant rat", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3648, + "name": "Angry goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3649, + "name": "Fear reaper", + "examine": "AHHHHH!", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3650, + "name": "Confusion beast", + "examine": "What on Wildy is that?!?", + "respawn": 10, + "combat": 43, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3651, + "name": "Confusion beast", + "examine": "What on Wildy is that?!?", + "respawn": 10, + "combat": 43, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3652, + "name": "Confusion beast", + "examine": "What on Wildy is that?!?", + "respawn": 10, + "combat": 43, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3653, + "name": "Confusion beast", + "examine": "What on Wildy is that?!?", + "respawn": 10, + "combat": 43, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3654, + "name": "Confusion beast", + "examine": "What on Wildy is that?!?", + "respawn": 10, + "combat": 43, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3655, + "name": "Hopeless creature", + "examine": "A hopeless poor creature.", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3656, + "name": "Hopeless creature", + "examine": "A hopeless poor creature.", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3657, + "name": "Hopeless creature", + "examine": "A hopeless poor creature.", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3658, + "name": "Tolna", + "examine": "Is that really Tolna?", + "respawn": 10, + "combat": 46, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3659, + "name": "Tolna", + "examine": "Is that really Tolna?", + "respawn": 10, + "combat": 46, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3660, + "name": "Tolna", + "examine": "Is that really Tolna?", + "respawn": 10, + "combat": 46, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3661, + "name": "Angry unicorn", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 47, + "hitpoints": 50, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3662, + "name": "Angry giant rat", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 47, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3663, + "name": "Angry goblin", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 47, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3664, + "name": "Angry bear", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 47, + "hitpoints": 50, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3665, + "name": "Fear reaper", + "examine": "AHHHH!", + "respawn": 10, + "combat": 55, + "hitpoints": 57, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 74, + "defenceMelee": 74, + "defenceRange": 74, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3666, + "name": "Confusion beast", + "examine": "What on Wildy is that?!?", + "respawn": 10, + "combat": 63, + "hitpoints": 64, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 83, + "defenceMelee": 83, + "defenceRange": 83, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3667, + "name": "Hopeless creature", + "examine": "A hopeless poor creature.", + "respawn": 10, + "combat": 71, + "hitpoints": 71, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 92, + "defenceMelee": 92, + "defenceRange": 92, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3668, + "name": "Hopeless beast", + "examine": "A hopeless poor creature.", + "respawn": 10, + "combat": 71, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3669, + "name": "Hopeless beast", + "examine": "A hopeless poor creature.", + "respawn": 10, + "combat": 71, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3670, + "name": "Odd Old Man", + "examine": "That\u0027s a lot of bones on his back...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3671, + "name": "Fortunato", + "examine": "Looks like he could do with a sip of Amontillado.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3672, + "name": "Ram", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3673, + "name": "Ram", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3674, + "name": "Bones", + "examine": "Bony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3675, + "name": "Vulture", + "examine": "If you see them circling run.", + "respawn": 10, + "combat": 31, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3676, + "name": "Vulture", + "examine": "If you see them circling run.", + "respawn": 10, + "combat": 31, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3677, + "name": "Sinister Stranger", + "examine": "He looks a LOT like a vampire...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3678, + "name": "Sinister Stranger", + "examine": "He looks a LOT like a vampire...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3679, + "name": "Vestri", + "examine": "He looks short and grumpy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3680, + "name": "Ali the Leaflet Dropper", + "examine": "A young boy handing out flyers.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3681, + "name": "Nigel", + "examine": "Even his mother hates him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3682, + "name": "Egg", + "examine": "Rolling, rolling, rolling - raw eggs!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3683, + "name": "Egg", + "examine": "Rolling, rolling, rolling - raw eggs!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3684, + "name": "Egg", + "examine": "Rolling, rolling, rolling - raw eggs!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3685, + "name": "Egg", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3686, + "name": "Chocolate kebbit", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3687, + "name": "Chocolate kebbit", + "examine": "Chocolatey kebbit goodness.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3688, + "name": "Easter Bunny", + "examine": "I don\u0027t exist, kids!", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3689, + "name": "Egg", + "examine": "A rolling chocolate egg.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3690, + "name": "Egg", + "examine": "A rolling chocolate egg.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3691, + "name": "Egg", + "examine": "A rolling chocolate egg.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3692, + "name": "Egg", + "examine": "A rolling chocolate egg.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3693, + "name": "Egg", + "examine": "A rolling chocolate egg.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3694, + "name": "Egg", + "examine": "A rolling chocolate egg.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3695, + "name": "Volf Olafson", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3696, + "name": "Ingrid Hradson", + "examine": "One of the inhabitants of the camp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3697, + "name": "Skeleton fremennik", + "examine": "Could use a good meal.", + "respawn": 10, + "combat": 40, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3698, + "name": "Skeleton fremennik", + "examine": "Could use a good meal.", + "respawn": 10, + "combat": 40, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3699, + "name": "Skeleton fremennik", + "examine": "Could use a good meal.", + "respawn": 10, + "combat": 40, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3700, + "name": "Skeleton fremennik", + "examine": "He seems a little underweight.", + "respawn": 10, + "combat": 50, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3701, + "name": "Skeleton fremennik", + "examine": "He seems a little underweight.", + "respawn": 10, + "combat": 50, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3702, + "name": "Skeleton fremennik", + "examine": "He seems a little underweight.", + "respawn": 10, + "combat": 50, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3703, + "name": "Skeleton fremennik", + "examine": "He seems a little underweight.", + "respawn": 10, + "combat": 60, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3704, + "name": "Skeleton fremennik", + "examine": "He seems a little underweight.", + "respawn": 10, + "combat": 60, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3705, + "name": "Skeleton fremennik", + "examine": "He seems a little underweight.", + "respawn": 10, + "combat": 60, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3706, + "name": "Ulfric", + "examine": "What could be worse than an angry, undead fremennik?", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3707, + "name": "Brine rat", + "examine": "Eww, a bald rat!", + "respawn": 10, + "combat": 70, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3708, + "name": "Boulder", + "examine": "Is it a rock crab? Our survey says no.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3709, + "name": "Boulder", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3710, + "name": "Ulfric", + "examine": "What could be worse than an angry, undead fremennik?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3711, + "name": "Giant bat", + "examine": "It\u0027s a pretty big bat.", + "respawn": 10, + "combat": 27, + "hitpoints": 32, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 41, + "defenceMelee": 41, + "defenceRange": 41, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3712, + "name": "Zanik", + "examine": "A goblin adventurer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3713, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3714, + "name": "Zanik", + "examine": "Putting up a fight!", + "respawn": 10, + "combat": 41, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3715, + "name": "Guard", + "examine": "A guard for the Humans Against Monsters group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3716, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3717, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3718, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3719, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3720, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3721, + "name": "Zanik", + "examine": "A heroic cave goblin joining you for another adventure!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3722, + "name": "Zanik", + "examine": "The Chosen Commander?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3723, + "name": "General Bentnoze", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3724, + "name": "General Wartface", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3725, + "name": "Grubfoot", + "examine": "Smaller than the average goblin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3726, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3727, + "name": "Splatter", + "examine": "Don\u0027t burst its bubble!", + "respawn": 10, + "combat": 21, + "hitpoints": 20, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3728, + "name": "Splatter", + "examine": "Don\u0027t burst its bubble!", + "respawn": 10, + "combat": 32, + "hitpoints": 30, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3729, + "name": "Splatter", + "examine": "Don\u0027t burst its bubble!", + "respawn": 10, + "combat": 43, + "hitpoints": 40, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3730, + "name": "Splatter", + "examine": "Don\u0027t burst its bubble!", + "respawn": 10, + "combat": 53, + "hitpoints": 50, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3731, + "name": "Splatter", + "examine": "Don\u0027t burst its bubble!", + "respawn": 10, + "combat": 64, + "hitpoints": 60, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3732, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 37, + "hitpoints": 30, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3733, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 37, + "hitpoints": 30, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3734, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 56, + "hitpoints": 45, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3735, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 56, + "hitpoints": 45, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3736, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 75, + "hitpoints": 60, + "maxHit": 12, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3737, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 75, + "hitpoints": 60, + "maxHit": 12, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3738, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 94, + "hitpoints": 10, + "maxHit": 14, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3739, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 94, + "hitpoints": 10, + "maxHit": 14, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3740, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 16, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3741, + "name": "Shifter", + "examine": "Nippy little thing!", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 16, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3901, + "defenceAnim": 3902, + "deathAnim": 3903, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3742, + "name": "Ravager", + "examine": "Worse than termites!", + "respawn": 10, + "combat": 35, + "hitpoints": 30, + "maxHit": 4, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3915, + "defenceAnim": 3916, + "deathAnim": 3917, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3743, + "name": "Ravager", + "examine": "Worse than termites!", + "respawn": 10, + "combat": 52, + "hitpoints": 45, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3915, + "defenceAnim": 3916, + "deathAnim": 3917, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3744, + "name": "Ravager", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 70, + "hitpoints": 60, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3915, + "defenceAnim": 3916, + "deathAnim": 3917, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3745, + "name": "Ravager", + "examine": "Worse than termites!", + "respawn": 10, + "combat": 88, + "hitpoints": 75, + "maxHit": 12, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3915, + "defenceAnim": 3916, + "deathAnim": 3917, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3746, + "name": "Ravager", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 105, + "hitpoints": 100, + "maxHit": 16, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3915, + "defenceAnim": 3916, + "deathAnim": 3917, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3747, + "name": "Spinner", + "examine": "Eeewww!", + "respawn": 10, + "combat": 37, + "hitpoints": 40, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3908, + "defenceAnim": 3909, + "deathAnim": 3903, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3748, + "name": "Spinner", + "examine": "Eeewww!", + "respawn": 10, + "combat": 55, + "hitpoints": 60, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3908, + "defenceAnim": 3909, + "deathAnim": 3903, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3749, + "name": "Spinner", + "examine": "Eeewww!", + "respawn": 10, + "combat": 74, + "hitpoints": 80, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3908, + "defenceAnim": 3909, + "deathAnim": 3903, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3750, + "name": "Spinner", + "examine": "Eeewww!", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3908, + "defenceAnim": 3909, + "deathAnim": 3903, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3751, + "name": "Spinner", + "examine": "Eeewww!", + "respawn": 10, + "combat": 87, + "hitpoints": 100, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3908, + "defenceAnim": 3909, + "deathAnim": 3903, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3752, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 33, + "hitpoints": 30, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3753, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 33, + "hitpoints": 30, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3754, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 49, + "hitpoints": 45, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3755, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 49, + "hitpoints": 45, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3756, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 67, + "hitpoints": 60, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3757, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 67, + "hitpoints": 60, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3758, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 83, + "hitpoints": 75, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3759, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 83, + "hitpoints": 75, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3760, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 100, + "hitpoints": 90, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3761, + "name": "Torcher", + "examine": "Burn baby, burn!", + "respawn": 10, + "combat": 100, + "hitpoints": 90, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3879, + "defenceAnim": 3880, + "deathAnim": 3881, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3762, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 33, + "hitpoints": 40, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3763, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 33, + "hitpoints": 40, + "maxHit": 5, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3764, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 50, + "hitpoints": 60, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3765, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 50, + "hitpoints": 60, + "maxHit": 7, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3766, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 67, + "hitpoints": 80, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3767, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 67, + "hitpoints": 80, + "maxHit": 8, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3768, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 84, + "hitpoints": 100, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3769, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 84, + "hitpoints": 100, + "maxHit": 9, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3770, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 100, + "hitpoints": 120, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3771, + "name": "Defiler", + "examine": "Duck!", + "respawn": 10, + "combat": 100, + "hitpoints": 120, + "maxHit": 11, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 3920, + "defenceAnim": 3921, + "deathAnim": 3922, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3772, + "name": "Brawler", + "examine": "Mind your toes!", + "respawn": 10, + "combat": 50, + "hitpoints": 60, + "maxHit": 7, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 3897, + "defenceAnim": 3895, + "deathAnim": 3894, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3773, + "name": "Brawler", + "examine": "Mind your toes!", + "respawn": 10, + "combat": 75, + "hitpoints": 90, + "maxHit": 9, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 3897, + "defenceAnim": 3895, + "deathAnim": 3894, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3774, + "name": "Brawler", + "examine": "Mind your toes!", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 13, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 3897, + "defenceAnim": 3895, + "deathAnim": 3894, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3775, + "name": "Brawler", + "examine": "Mind your toes!", + "respawn": 10, + "combat": 128, + "hitpoints": 150, + "maxHit": 17, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 3897, + "defenceAnim": 3895, + "deathAnim": 3894, + "attackBonus": 195, + "defenceMelee": 195, + "defenceRange": 195, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3776, + "name": "Brawler", + "examine": "Mind your toes!", + "respawn": 10, + "combat": 157, + "hitpoints": 180, + "maxHit": 20, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 3897, + "defenceAnim": 3895, + "deathAnim": 3894, + "attackBonus": 234, + "defenceMelee": 234, + "defenceRange": 234, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3777, + "name": "Portal", + "examine": "Cheerful, helpful and optimistic, I\u0027ll bet.", + "respawn": 10, + "combat": 0, + "hitpoints": 250, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": -1, + "defenceAnim": -1, + "deathAnim": -1, + "attackBonus": 0, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 100, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3778, + "name": "Portal", + "examine": "King of Camelot.", + "respawn": 10, + "combat": 0, + "hitpoints": 250, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": -1, + "defenceAnim": -1, + "deathAnim": -1, + "attackBonus": 0, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 100, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3779, + "name": "Portal", + "examine": "King Arthur in disguise.", + "respawn": 10, + "combat": 0, + "hitpoints": 250, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": -1, + "defenceAnim": -1, + "deathAnim": -1, + "attackBonus": 0, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 100, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3780, + "name": "Portal", + "examine": "Magical.", + "respawn": 10, + "combat": 0, + "hitpoints": 250, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": -1, + "defenceAnim": -1, + "deathAnim": -1, + "attackBonus": 0, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 100, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3781, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3782, + "name": "Void Knight", + "examine": "A powerful knight of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 200, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 100, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3783, + "name": "Void Knight", + "examine": "Long legged licker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3784, + "name": "Void Knight", + "examine": "A powerful knight of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3785, + "name": "Void Knight", + "examine": "A powerful knight of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3786, + "name": "Void Knight", + "examine": "A powerful knight of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3787, + "name": "Void Knight", + "examine": "One of the Knights of the Round Table.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3788, + "name": "Void Knight", + "examine": "A powerful knight of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3789, + "name": "Void Knight", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3790, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3791, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3792, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3793, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3794, + "name": "Squire", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3795, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3796, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3797, + "name": "Squire", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3798, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3799, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3800, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3801, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3802, + "name": "Squire", + "examine": "A squire of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3803, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3804, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3805, + "name": "Postie Pete", + "examine": "Posts things.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3806, + "name": "Millie Miller", + "examine": "Miss Millicent Miller the Miller of Mill Lane Mill.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3807, + "name": "Gillie Groats", + "examine": "Gillie the Milkmaid milks cows. She\u0027s udderly fantastic at it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3808, + "name": "Tortoise", + "examine": "Massive beast of War with extra Gnome.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3809, + "name": "Captain Dalbur", + "examine": "Tally Ho!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3810, + "name": "Captain Bleemadge", + "examine": "Huzzah!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3811, + "name": "Captain Errdo", + "examine": "Up up and away!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3812, + "name": "Captain Klemfoodle", + "examine": "Up up and away!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3813, + "name": "Captain Wimto", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3814, + "name": "Gnome Archer", + "examine": "A Gnome Arrow-chucker", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3815, + "name": "Gnome Driver", + "examine": "Yee haa!", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3816, + "name": "Gnome Mage", + "examine": "A battle mage of the gnomish variety.", + "respawn": 10, + "combat": 5, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3817, + "name": "Lieutenant Schepbur", + "examine": "The battle tortoise commander. Sir!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3818, + "name": "Trainer Nacklepen", + "examine": "The cruel tortoise trainer. Boo!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3819, + "name": "Tortoise", + "examine": "A large tortoise.", + "respawn": 10, + "combat": 79, + "hitpoints": 100, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3820, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3821, + "name": "Wise Old Man", + "examine": "A venerable and rich sage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3822, + "name": "Herman Caranos", + "examine": "Founder and Director of the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3823, + "name": "Franklin Caranos", + "examine": "Engineer for the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3824, + "name": "Arnold Lydspor", + "examine": "Secretary and Storemaster for the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3825, + "name": "Devin Mendelberg", + "examine": "A member of the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3826, + "name": "George Laxmeister", + "examine": "A member of the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3827, + "name": "Ramara du Croissant", + "examine": "A member of the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3828, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3829, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3830, + "name": "Kathy Corkat", + "examine": "Carries supplies to the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3831, + "name": "Kathy Corkat", + "examine": "Carries supplies to the Piscatoris Fishing Colony.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3832, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3833, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3834, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3835, + "name": "Kalphite Queen", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 333, + "hitpoints": 255, + "maxHit": 33, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3836, + "name": "Kalphite Queen", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 333, + "hitpoints": 255, + "maxHit": 33, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 331, + "defenceMelee": 331, + "defenceRange": 331, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3837, + "name": "Drunken Dwarf", + "examine": "He\u0027s had a fair bit to drink...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3838, + "name": "Wise Old Man", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3839, + "name": "Wise Old Man", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3840, + "name": "Sea troll", + "examine": "An aquatic troll.", + "respawn": 10, + "combat": 79, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3841, + "name": "Sea troll", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 65, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3842, + "name": "Sea troll", + "examine": "An aquatic troll.", + "respawn": 10, + "combat": 87, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 3843, + "name": "Sea troll", + "examine": "An aquatic troll.", + "respawn": 10, + "combat": 101, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3844, + "name": "Skeleton Mage", + "examine": "Recalled to unlife!", + "respawn": 10, + "combat": 64, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3845, + "name": "Sea troll", + "examine": "An aquatic troll.", + "respawn": 10, + "combat": 58, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3846, + "name": "Sea Troll General", + "examine": "This will not be so easy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3847, + "name": "Sea Troll Queen", + "examine": "The mother of all sea trolls!", + "respawn": 10, + "combat": 170, + "hitpoints": 200, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 3848, + "name": "Fishing spot", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3849, + "name": "Fishing spot", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3850, + "name": "Skeleton Mage", + "examine": "Recalled to unlife!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3851, + "name": "Skeleton Mage", + "examine": "Doesn\u0027t seem to want to go away.", + "respawn": 10, + "combat": 83, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3852, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3853, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3854, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3855, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3856, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3857, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3858, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3859, + "name": "Suspect", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3860, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3861, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3862, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3863, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3864, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3865, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3866, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3867, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3868, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3869, + "name": "Suspect", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3870, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3871, + "name": "Suspect", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3872, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3873, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3874, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3875, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3876, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3877, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3878, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3879, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3880, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3881, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3882, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3883, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3884, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3885, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3886, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3887, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3888, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3889, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3890, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3891, + "name": "Suspect", + "examine": "Is she the one?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3892, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3893, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3894, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3895, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3896, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3897, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3898, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3899, + "name": "Molly", + "examine": "AKA Goody Two-Shoes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3900, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3901, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3902, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3903, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3904, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3905, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3906, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3907, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3908, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3909, + "name": "Molly", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3910, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3911, + "name": "Molly", + "examine": "AKA Goody Two-Shoes", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3912, + "name": "Flippa", + "examine": "He looks flipping mad.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3913, + "name": "Tilt", + "examine": "He looks ready to flip out.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3914, + "name": "Gardener", + "examine": "An old gardener.", + "respawn": 10, + "combat": 4, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3915, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3916, + "name": "Carpenter Kjallak", + "examine": "His bark\u0027s worse than his blight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3917, + "name": "Farmer Fromund", + "examine": "He looks a bit seedy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3918, + "name": "Prince Brand", + "examine": "The Prince of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3919, + "name": "Princess Astrid", + "examine": "The Princess of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3920, + "name": "Runa", + "examine": "The barmaid of the Esoterican Arms.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3921, + "name": "Halla", + "examine": "She owns the clothes shop.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3922, + "name": "Finn", + "examine": "Runs the general store.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3923, + "name": "Osvald", + "examine": "If it\u0027s edible, he\u0027ll sell it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3924, + "name": "Runolf", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3925, + "name": "Tjorvi", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3926, + "name": "Ingrid", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3927, + "name": "Thora", + "examine": "A subject of Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3928, + "name": "Signy", + "examine": "A Fremennik teenager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3929, + "name": "Hild", + "examine": "A Fremennik teenager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3930, + "name": "Armod", + "examine": "A Fremennik teenager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3931, + "name": "Beigarth", + "examine": "A Fremennik teenager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3932, + "name": "Reinn", + "examine": "A Fremennik teenager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3933, + "name": "Alviss", + "examine": "A dwarf who\u0027s currently living in Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3934, + "name": "Fullangr", + "examine": "A dwarf who\u0027s currently living in Miscellania.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3935, + "name": "Jari", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3936, + "name": "Thorodin", + "examine": "A dwarf miner. He\u0027s digging holes in the walls.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3937, + "name": "Ferd", + "examine": "A dwarf miner. He\u0027s shoring up the walls.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3938, + "name": "Donal", + "examine": "A rather scared-looking dwarf. He doesn\u0027t seem all that drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3939, + "name": "Sea Snake Young", + "examine": "Snake, snake, oh, it\u0027s a young snake...", + "respawn": 10, + "combat": 90, + "hitpoints": 85, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 110, + "defenceMelee": 110, + "defenceRange": 110, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": true + }, + { + "id": 3940, + "name": "Sea Snake Hatchling", + "examine": "A baby sea snake. Snaaaaaaake!", + "respawn": 10, + "combat": 62, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": true + }, + { + "id": 3941, + "name": "Guard", + "examine": "He\u0027s guarding the entrance to the dungeons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3942, + "name": "Guard", + "examine": "He\u0027s guarding the entrance to the dungeons.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3943, + "name": "Giant Sea Snake", + "examine": "A big snake that lives in the sea. How did it get in here?", + "respawn": 10, + "combat": 149, + "hitpoints": 100, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 3944, + "name": "Hangman game", + "examine": "Guess right or the mannequin gets it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3945, + "name": "Hangman game", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3946, + "name": "Hangman game", + "examine": "Guess right or the mannequin gets it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3947, + "name": "Hangman game", + "examine": "Guess right or the mannequin gets it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3948, + "name": "Hangman game", + "examine": "Guess right or the mannequin gets it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3949, + "name": "Hangman game", + "examine": "Guess right or the mannequin gets it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3950, + "name": "Hangman game", + "examine": "Have you tried \u0027E\u0027 yet?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3951, + "name": "Hangman game", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3952, + "name": "Hangman game", + "examine": "Be careful! One wrong move and he\u0027s had it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3953, + "name": "Hangman game", + "examine": "Oh no! He\u0027s been hanged!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3954, + "name": "Treasure fairy", + "examine": "Where is she hiding the treasure?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3955, + "name": "Jacky Jester", + "examine": "A wacky Jester.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3956, + "name": "Combat stone", + "examine": "It\u0027s destroyed!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3957, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3958, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3959, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3960, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3961, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3962, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3963, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3964, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3965, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3966, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3967, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3968, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3969, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3970, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3971, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3972, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3973, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3974, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3975, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3976, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3977, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3978, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3979, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3980, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3981, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3982, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3983, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3984, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3985, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3986, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3987, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3988, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3989, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3990, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3991, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3992, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3993, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3994, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3995, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3996, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3997, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3998, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 3999, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4000, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4001, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4002, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4003, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4004, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4005, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4006, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4007, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4008, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4009, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4010, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4011, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4012, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4013, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4014, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4015, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4016, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4017, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4018, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4019, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4020, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4021, + "name": "Elemental balance", + "examine": "You can practice your magic here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4022, + "name": "Elemental balance", + "examine": "It\u0027s very slightly red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4023, + "name": "Elemental balance", + "examine": "It\u0027s slightly red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4024, + "name": "Elemental balance", + "examine": "It\u0027s a bit red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4025, + "name": "Elemental balance", + "examine": "It\u0027s quite red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4026, + "name": "Elemental balance", + "examine": "It\u0027s bright red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4027, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright red!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4028, + "name": "Elemental balance", + "examine": "It\u0027s very slightly blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4029, + "name": "Elemental balance", + "examine": "It\u0027s slightly blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4030, + "name": "Elemental balance", + "examine": "It\u0027s a bit blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4031, + "name": "Elemental balance", + "examine": "It\u0027s quite blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4032, + "name": "Elemental balance", + "examine": "It\u0027s bright blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4033, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright blue!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4034, + "name": "Elemental balance", + "examine": "It\u0027s very slightly green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4035, + "name": "Elemental balance", + "examine": "It\u0027s slightly green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4036, + "name": "Elemental balance", + "examine": "It\u0027s a bit green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4037, + "name": "Elemental balance", + "examine": "It\u0027s quite green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4038, + "name": "Elemental balance", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4039, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright green!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4040, + "name": "Elemental balance", + "examine": "It\u0027s very slightly cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4041, + "name": "Elemental balance", + "examine": "It\u0027s slightly cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4042, + "name": "Elemental balance", + "examine": "It\u0027s a bit cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4043, + "name": "Elemental balance", + "examine": "It\u0027s quite cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4044, + "name": "Elemental balance", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4045, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright cyan!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4046, + "name": "Elemental balance", + "examine": "You can practice your magic here.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4047, + "name": "Elemental balance", + "examine": "It\u0027s very slightly red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4048, + "name": "Elemental balance", + "examine": "It\u0027s slightly red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4049, + "name": "Elemental balance", + "examine": "It\u0027s a bit red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4050, + "name": "Elemental balance", + "examine": "It\u0027s quite red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4051, + "name": "Elemental balance", + "examine": "It\u0027s bright red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4052, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright red!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4053, + "name": "Elemental balance", + "examine": "It\u0027s very slightly blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4054, + "name": "Elemental balance", + "examine": "It\u0027s slightly blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4055, + "name": "Elemental balance", + "examine": "It\u0027s a bit blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4056, + "name": "Elemental balance", + "examine": "It\u0027s quite blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4057, + "name": "Elemental balance", + "examine": "It\u0027s bright blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4058, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright blue!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4059, + "name": "Elemental balance", + "examine": "It\u0027s very slightly green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4060, + "name": "Elemental balance", + "examine": "It\u0027s slightly green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4061, + "name": "Elemental balance", + "examine": "It\u0027s a bit green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4062, + "name": "Elemental balance", + "examine": "It\u0027s quite green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4063, + "name": "Elemental balance", + "examine": "It\u0027s bright green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4064, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright green!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4065, + "name": "Elemental balance", + "examine": "It\u0027s very slightly cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4066, + "name": "Elemental balance", + "examine": "It\u0027s slightly cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4067, + "name": "Elemental balance", + "examine": "It\u0027s a bit cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4068, + "name": "Elemental balance", + "examine": "It\u0027s quite cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4069, + "name": "Elemental balance", + "examine": "It\u0027s bright cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4070, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright cyan!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4071, + "name": "Elemental balance", + "examine": "It\u0027s pure white and perfectly balanced!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4072, + "name": "Elemental balance", + "examine": "It\u0027s very slightly red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4073, + "name": "Elemental balance", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4074, + "name": "Elemental balance", + "examine": "It\u0027s a bit red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4075, + "name": "Elemental balance", + "examine": "It\u0027s quite red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4076, + "name": "Elemental balance", + "examine": "It\u0027s bright red.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4077, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright red!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4078, + "name": "Elemental balance", + "examine": "It\u0027s very slightly blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4079, + "name": "Elemental balance", + "examine": "It\u0027s slightly blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4080, + "name": "Elemental balance", + "examine": "It\u0027s a bit blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4081, + "name": "Elemental balance", + "examine": "It\u0027s quite blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4082, + "name": "Elemental balance", + "examine": "It\u0027s bright blue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4083, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright blue!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4084, + "name": "Elemental balance", + "examine": "It\u0027s very slightly green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4085, + "name": "Elemental balance", + "examine": "It\u0027s slightly green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4086, + "name": "Elemental balance", + "examine": "It\u0027s a bit green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4087, + "name": "Elemental balance", + "examine": "It\u0027s quite green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4088, + "name": "Elemental balance", + "examine": "It\u0027s bright green.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4089, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright green!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4090, + "name": "Elemental balance", + "examine": "It\u0027s very slightly cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4091, + "name": "Elemental balance", + "examine": "It\u0027s slightly cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4092, + "name": "Elemental balance", + "examine": "It\u0027s a bit cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4093, + "name": "Elemental balance", + "examine": "It\u0027s quite cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4094, + "name": "Elemental balance", + "examine": "It\u0027s bright cyan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4095, + "name": "Elemental balance", + "examine": "It\u0027s glowing bright cyan!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4096, + "name": "Combat stone", + "examine": "It\u0027s destroyed!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4097, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4098, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4099, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4100, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4101, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4102, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4103, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4104, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4105, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4106, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4107, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4108, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4109, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4110, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4111, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4112, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4113, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4114, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4115, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4116, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4117, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4118, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4119, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4120, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4121, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4122, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4123, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4124, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4125, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4126, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4127, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4128, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4129, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4130, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4131, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4132, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4133, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4134, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4135, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4136, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4137, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4138, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4139, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4140, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4141, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4142, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4143, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4144, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4145, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4146, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4147, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4148, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4149, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4150, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4151, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4152, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4153, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4154, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4155, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4156, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4157, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4158, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4159, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4160, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4161, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4162, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4163, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4164, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4165, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4166, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4167, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4168, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4169, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4170, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4171, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4172, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4173, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4174, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4175, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4176, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4177, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4178, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4179, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4180, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4181, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4182, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4183, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4184, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4185, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4186, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4187, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4188, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4189, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4190, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4191, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4192, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4193, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4194, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4195, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4196, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4197, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4198, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4199, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4200, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4201, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4202, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4203, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4204, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4205, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4206, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4207, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4208, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4209, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4210, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4211, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4212, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4213, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4214, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4215, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4216, + "name": "Combat stone", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4217, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4218, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4219, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4220, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4221, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4222, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4223, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4224, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4225, + "name": "Combat stone", + "examine": "Try to damage it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4226, + "name": "Crawling hand", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4227, + "name": "Cockatrice", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4228, + "name": "Basilisk", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4229, + "name": "Kurask", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4230, + "name": "Abyssal demon", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4231, + "name": "Left head", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4232, + "name": "Middle head", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4233, + "name": "Right head", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4234, + "name": "Kalphite Queen", + "examine": "And with its head he came galumphing back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4235, + "name": "Rick", + "examine": "He wears a hat to hide the fact that he\u0027s bald.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4236, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4237, + "name": "Maid", + "examine": "Very neat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4238, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4239, + "name": "Cook", + "examine": "I hope she can find all the ingredients!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4240, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4241, + "name": "Butler", + "examine": "He knows how to buttle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4242, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4243, + "name": "Demon butler", + "examine": "Blimey, a Demon Butler!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4244, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4245, + "name": "Chief servant", + "examine": "Head of the servants\u0027 guild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4246, + "name": "Taxidermist", + "examine": "She smells unpleasantly of chemicals.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4247, + "name": "Estate agent", + "examine": "A fancy businessman with a mighty fine hat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4248, + "name": "Stonemason", + "examine": "Someone has to get rid of all the stone they dug Keldagrim out of.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4249, + "name": "Sir Renitee", + "examine": "Chief Herald of Falador.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4250, + "name": "Sawmill operator", + "examine": "He changes the shape of wood.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4251, + "name": "Garden supplier", + "examine": "She has green fingers. (Not literally.)", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4252, + "name": "Macaroni Penguin", + "examine": "Beak areful with this one, he looks shifty!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4253, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4254, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4255, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4256, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4257, + "name": "Guard", + "examine": "A dwarven guard.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4258, + "name": "Guard", + "examine": "A dwarven guard.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4259, + "name": "Guard", + "examine": "A dwarven guard.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4260, + "name": "Guard", + "examine": "A dwarven guard.", + "respawn": 10, + "combat": 10, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4261, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4262, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4263, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4264, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4265, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4266, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4267, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4268, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4269, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4270, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4271, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4272, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4273, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4274, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4275, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4276, + "name": "Goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4277, + "name": "Buinn", + "examine": "Engineer\u0027s assistant.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4278, + "name": "Animated Bronze Armour", + "examine": "Animated bronze armour.", + "respawn": 10, + "combat": 11, + "hitpoints": 10, + "maxHit": 3, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4279, + "name": "Animated Iron Armour", + "examine": "Animated iron armour.", + "respawn": 10, + "combat": 23, + "hitpoints": 20, + "maxHit": 6, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4280, + "name": "Animated Steel Armour", + "examine": "Animated steel armour.", + "respawn": 10, + "combat": 46, + "hitpoints": 40, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4281, + "name": "Animated Black Armour", + "examine": "Animated black armour.", + "respawn": 10, + "combat": 69, + "hitpoints": 60, + "maxHit": 13, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4282, + "name": "Animated Mithril Armour", + "examine": "Animated mithril armour.", + "respawn": 10, + "combat": 92, + "hitpoints": 80, + "maxHit": 16, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4283, + "name": "Animated Adamant Armour", + "examine": "Animated adamant armour.", + "respawn": 10, + "combat": 113, + "hitpoints": 99, + "maxHit": 19, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 7041, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4284, + "name": "Animated Rune Armour", + "examine": "Animated rune armour.", + "respawn": 10, + "combat": 138, + "hitpoints": 120, + "maxHit": 22, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4285, + "name": "Ghommal", + "examine": "The big door man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4286, + "name": "Harrallak Menarous", + "examine": "Guild Master.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4287, + "name": "Gamfred", + "examine": "The guild engineer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4288, + "name": "Ajjat", + "examine": "Used to be a black knight.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4289, + "name": "Kamfreena", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4290, + "name": "Shanomi", + "examine": "A warrior mage from the east.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4291, + "name": "Cyclops", + "examine": "A one-eyed man eater.", + "respawn": 10, + "combat": 56, + "hitpoints": 80, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 4652, + "defenceAnim": 4651, + "deathAnim": 4653, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4292, + "name": "Cyclops", + "examine": "A one-eyed woman eater.", + "respawn": 10, + "combat": 76, + "hitpoints": 100, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 4652, + "defenceAnim": 4651, + "deathAnim": 4653, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4293, + "name": "Lidio", + "examine": "Food shopkeeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4294, + "name": "Lilly", + "examine": "Potion shopkeeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4295, + "name": "Anton", + "examine": "Armour shopkeeper.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4296, + "name": "Jade", + "examine": "Bank staff.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4297, + "name": "Sloane", + "examine": "He looks like a strong warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4298, + "name": "Jimmy", + "examine": "He looks a bit drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4299, + "name": "Ref", + "examine": "He looks fair and reliable.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4300, + "name": "Ref", + "examine": "He looks fair and reliable.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4301, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4302, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4303, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4304, + "name": "Guard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4305, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4306, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4307, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4308, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4309, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4310, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4311, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4312, + "name": "Nardok", + "examine": "What has he got under his coat?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4313, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4314, + "name": "Dartog", + "examine": "He\u0027s standing guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4315, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4316, + "name": "Dwarf", + "examine": "He delivers the goods.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4317, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4318, + "name": "H.A.M. Member", + "examine": "A member of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4319, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4320, + "name": "H.A.M. Member", + "examine": "A member of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4321, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4322, + "name": "Zanik", + "examine": "A younger Zanik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4323, + "name": "Zanik", + "examine": "A younger Zanik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4324, + "name": "Zanik", + "examine": "The mark on her head is glowing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4325, + "name": "Light creature", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4326, + "name": "Zanik", + "examine": "Hopefully she\u0027ll pass as a short, hunched HAM member.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4327, + "name": "HAM member", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4328, + "name": "Sigmund", + "examine": "He\u0027s plotting something bad!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4329, + "name": "H.A.M. Deacon", + "examine": "A deacon in the Humans Against Monsters group. A rather enthusiastic chap.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4330, + "name": "Johanhus Ulsbrecht", + "examine": "The leader of the \u0027Humans Against Monsters\u0027 group.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4331, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4332, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4333, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4334, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4335, + "name": "Sigmund", + "examine": "Former adviser to the Duke of Lumbridge.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4336, + "name": "Guard", + "examine": "A guard for the humans against monster group.", + "respawn": 10, + "combat": 22, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4337, + "name": "Zanik", + "examine": "She has a mark on her head.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4338, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4339, + "name": "Zanik", + "examine": "An eager cave goblin on her first trip to the surface.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4340, + "name": "Zanik", + "examine": "Hopefully she\u0027ll pass as a short, hunched HAM member.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4341, + "name": "Zanik", + "examine": "An eager cave goblin on her first trip to the surface.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4342, + "name": "Zanik", + "examine": "A goblin fighting for her city.", + "respawn": 10, + "combat": 41, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4343, + "name": "Snake", + "examine": "Snake! Snaaaaake!", + "respawn": 10, + "combat": 35, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": true + }, + { + "id": 4344, + "name": "Monkey", + "examine": "Perhaps our oldest relatives?", + "respawn": 10, + "combat": 3, + "hitpoints": 6, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 7, + "defenceMelee": 7, + "defenceRange": 7, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 4345, + "name": "Albino bat", + "examine": "It\u0027s all white by me.", + "respawn": 10, + "combat": 52, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4346, + "name": "Crab", + "examine": "Clearly not a hermit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4347, + "name": "Giant mosquito", + "examine": "A flying blood sucker.", + "respawn": 10, + "combat": 13, + "hitpoints": 3, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 3, + "defenceMelee": 3, + "defenceRange": 3, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4348, + "name": "Jungle horror", + "examine": "A horrible, emaciated ape like creature with beady red eyes.", + "respawn": 10, + "combat": 70, + "hitpoints": 45, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4349, + "name": "Jungle horror", + "examine": "A horrible, emaciated ape like creature with beady yellow eyes.", + "respawn": 10, + "combat": 70, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4350, + "name": "Jungle horror", + "examine": "A horrible, emaciated ape like creature with beady green eyes.", + "respawn": 10, + "combat": 70, + "hitpoints": 45, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4351, + "name": "Jungle horror", + "examine": "A horrible, emaciated ape like creature with beady blue eyes.", + "respawn": 10, + "combat": 70, + "hitpoints": 45, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4352, + "name": "Jungle horror", + "examine": "A horrible, emaciated ape like creature with beady pink eyes.", + "respawn": 10, + "combat": 70, + "hitpoints": 45, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 58, + "defenceMelee": 58, + "defenceRange": 58, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4353, + "name": "Cave horror", + "examine": "A horrible, emaciated ape like creature with beady red eyes.", + "respawn": 10, + "combat": 80, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4354, + "name": "Cave horror", + "examine": "A horrible, emaciated ape like creature with beady red eyes.", + "respawn": 10, + "combat": 80, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4355, + "name": "Cave horror", + "examine": "A horrible, emaciated ape like creature with beady red eyes.", + "respawn": 10, + "combat": 80, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4356, + "name": "Cave horror", + "examine": "A horrible, emaciated ape like creature with beady red eyes.", + "respawn": 10, + "combat": 80, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4357, + "name": "Cave horror", + "examine": "A horrible, emaciated ape like creature with beady red eyes.", + "respawn": 10, + "combat": 80, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4358, + "name": "Cavey Davey", + "examine": "A pirate of Mos Le\u0027Harmless.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4359, + "name": "Patchy", + "examine": "Patchy the pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4360, + "name": "San Fan", + "examine": "A pirate from the lands to the east.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4361, + "name": "Fancy Dan", + "examine": "A very flamboyant pirate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4362, + "name": "Honest Jimmy", + "examine": "I can\u0027t wait to buy from a guy with Honest in his name...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4363, + "name": "Monkey", + "examine": "Perhaps arr oldest piratical relatives?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4364, + "name": "Swarm", + "examine": "A swarm of vicious sweetflies!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4365, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4366, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4367, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4368, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4369, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4370, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4371, + "name": "Blue Monkey", + "examine": "A native monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4372, + "name": "Red Monkey", + "examine": "A native monkey.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4373, + "name": "Parrot", + "examine": "A colourful bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4374, + "name": "Parrot", + "examine": "A colourful bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4375, + "name": "Security Guard", + "examine": "A retired Wildy security guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4376, + "name": "Litara", + "examine": "Litara, a barbarian explorer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4377, + "name": "Gate of War", + "examine": "Very war-like and looking at you!", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4378, + "name": "Ricketty door", + "examine": "Even this door looks half starved, maybe it\u0027s going to invite you for lunch.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4379, + "name": "Oozing barrier", + "examine": "Are you sure you want to touch that?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4380, + "name": "Portal of Death", + "examine": "Bones of the long dead crafted into an elaborate portal.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4381, + "name": "Ankou", + "examine": "A boney ghost.", + "respawn": 10, + "combat": 75, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4382, + "name": "Ankou", + "examine": "A boney ghost.", + "respawn": 10, + "combat": 82, + "hitpoints": 65, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 84, + "defenceMelee": 84, + "defenceRange": 84, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4383, + "name": "Ankou", + "examine": "A boney ghost.", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4384, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 68, + "hitpoints": 77, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 100, + "defenceMelee": 100, + "defenceRange": 100, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4385, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 60, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4386, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 85, + "hitpoints": 78, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 101, + "defenceMelee": 101, + "defenceRange": 101, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4387, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 77, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4388, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 76, + "hitpoints": 74, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4389, + "name": "Flesh Crawler", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 28, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4390, + "name": "Flesh Crawler", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 35, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4391, + "name": "Flesh Crawler", + "examine": "I don\u0027t think insect repellent will work...", + "respawn": 10, + "combat": 41, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4392, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 30, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4393, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 44, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4394, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 53, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4395, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 26, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4396, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 4397, + "name": "Catablepon", + "examine": "Big... Cow-like... But cows don\u0027t have serpent tails!", + "respawn": 10, + "combat": 49, + "hitpoints": 40, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4398, + "name": "Catablepon", + "examine": "Big... Cow-like... But cows don\u0027t have serpent tails!", + "respawn": 10, + "combat": 64, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4399, + "name": "Catablepon", + "examine": "Big... Cow-like... But cows don\u0027t have serpent tails!", + "respawn": 10, + "combat": 68, + "hitpoints": 50, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4400, + "name": "Giant spider", + "examine": "I think this spider has been genetically modified.", + "respawn": 10, + "combat": 50, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4401, + "name": "Spider", + "examine": "Incey wincey... with a nasty bite.", + "respawn": 10, + "combat": 24, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4402, + "name": "Scorpion", + "examine": "An extremely vicious scorpion.", + "respawn": 10, + "combat": 59, + "hitpoints": 55, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 71, + "defenceMelee": 71, + "defenceRange": 71, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4403, + "name": "Scorpion", + "examine": "An extremely vicious scorpion.", + "respawn": 10, + "combat": 37, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4404, + "name": "Minotaur", + "examine": "He doesn\u0027t look very pleased to see you.", + "respawn": 10, + "combat": 12, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4405, + "name": "Minotaur", + "examine": "He doesn\u0027t look very pleased to see you.", + "respawn": 10, + "combat": 19, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4406, + "name": "Minotaur", + "examine": "He doesn\u0027t look very pleased to see you.", + "respawn": 10, + "combat": 27, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4407, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4408, + "name": "Goblin", + "examine": "These goblins have grown strong.", + "respawn": 10, + "combat": 13, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4409, + "name": "Goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 11, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4410, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 16, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4411, + "name": "Goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 25, + "hitpoints": 26, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 33, + "defenceMelee": 33, + "defenceRange": 33, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4412, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 16, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 309, + "defenceAnim": 312, + "deathAnim": 313, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4413, + "name": "Wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 14, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4414, + "name": "Wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 11, + "hitpoints": 15, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4415, + "name": "Rat", + "examine": "A popular dwarven delicacy.", + "respawn": 10, + "combat": 1, + "hitpoints": 2, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 2, + "defenceMelee": 2, + "defenceRange": 2, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 4416, + "name": "Bee keeper", + "examine": "A goblin \u0027spy\u0027 that Sigmund\u0027s followers have captured.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4417, + "name": "Bees!", + "examine": "Oldak\u0027s new assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4418, + "name": "Gorak", + "examine": "Gorak by name, Gorak by nature.", + "respawn": 10, + "combat": 145, + "hitpoints": 114, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 148, + "defenceMelee": 148, + "defenceRange": 148, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4419, + "name": "Cosmic Being", + "examine": "A highly enlightened being.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4420, + "name": "Null", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4421, + "name": "Null", + "examine": "", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4422, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4423, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4424, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4425, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4426, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4427, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4428, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4429, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4430, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4431, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4432, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4433, + "name": "Fairy Godfather", + "examine": "I\u0027m gonna make him an offer he can\u0027t refuse.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4434, + "name": "Fairy Nuff", + "examine": "A healing fairy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4435, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4436, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4437, + "name": "Fairy Queen", + "examine": "Looks otherworldy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4438, + "name": "Centaur", + "examine": "Horseplay.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4439, + "name": "Centaur", + "examine": "Half horse, half woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4440, + "name": "Stag", + "examine": "A noble creature!", + "respawn": 10, + "combat": 15, + "hitpoints": 19, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 24, + "defenceMelee": 24, + "defenceRange": 24, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4441, + "name": "Wood Dryad", + "examine": "Twiggy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4442, + "name": "Fairy Very Wise", + "examine": "No question is so difficult to answer as that to which the answer is obvious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4443, + "name": "Fairy", + "examine": "A head-banger.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4444, + "name": "Fairy", + "examine": "If she wasn\u0027t flying she\u0027d have a limp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4445, + "name": "Fairy", + "examine": "That arm looks sore.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4446, + "name": "Fairy", + "examine": "It\u0027s just a flesh wound.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4447, + "name": "Rabbit", + "examine": "Aww, how cute.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4448, + "name": "Rabbit", + "examine": "Aww, how cute.", + "respawn": 10, + "combat": 1, + "hitpoints": 1, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4449, + "name": "Butterfly", + "examine": "These look much better in the wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4450, + "name": "Butterfly", + "examine": "These look much better in the wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4451, + "name": "Starflower", + "examine": "A small, green shoot.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4452, + "name": "Starflower", + "examine": "It doesn\u0027t look that rare.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4453, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4454, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4455, + "name": "Fairy Fixit", + "examine": "Fairy ring maintenance division.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4456, + "name": "Ork", + "examine": "Ugly, fierce and with a bad attitude.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4457, + "name": "Ork", + "examine": "Ugly, fierce and with a bad attitude.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4458, + "name": "Ork", + "examine": "Ugly, fierce and with a bad attitude.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4459, + "name": "Ork", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 20, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4460, + "name": "Fake Man", + "examine": "It\u0027s good enough to fool a troll.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4461, + "name": "Held vampyre juvinate", + "examine": "A juvinate vampyre, held in a powerful spell.", + "respawn": 10, + "combat": 90, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4462, + "name": "Held vampyre juvinate", + "examine": "A juvinate vampyre, held in a powerful spell.", + "respawn": 10, + "combat": 119, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4463, + "name": "Angry juvinate", + "examine": "An initiate juvenile vampyre; he looks really angry.", + "respawn": 10, + "combat": 70, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4464, + "name": "Angry juvinate", + "examine": "An initiate juvenile vampyre; he looks really angry.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4465, + "name": "Angry juvinate", + "examine": "An initiate juvenile vampyre; he looks really angry.", + "respawn": 10, + "combat": 130, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4466, + "name": "Benjamin", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4467, + "name": "Liam", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4468, + "name": "Miala", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4469, + "name": "Verak", + "examine": "A human returned from vampyric form.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4470, + "name": "Tree spirit", + "examine": "A very angry nymph.", + "respawn": 10, + "combat": 14, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4471, + "name": "Tree spirit", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 29, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4472, + "name": "Tree spirit", + "examine": "Ugly and bad-tempered.", + "respawn": 10, + "combat": 49, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4473, + "name": "Tree spirit", + "examine": "She seems to doubt the existence of a dragon at all.", + "respawn": 10, + "combat": 79, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4474, + "name": "Tree spirit", + "examine": "This is ready for you to cast magic at it.", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4475, + "name": "Tree spirit", + "examine": "An old sailor.", + "respawn": 10, + "combat": 159, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4476, + "name": "Guardian mummy", + "examine": "Who\u0027s your mummy?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4477, + "name": "Annoyed guardian mummy", + "examine": "Somehow he\u0027s managing to look angry.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4478, + "name": "Tarik", + "examine": "That\u0027s a strange hat for a local.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4479, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4480, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4481, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4482, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4483, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4484, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4485, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4486, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4487, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4488, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4489, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4490, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4491, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4492, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4493, + "name": "General Bentnoze", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4494, + "name": "General Wartface", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4495, + "name": "Null", + "examine": "Smaller than the average goblin", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4496, + "name": "Grubfoot", + "examine": "Smaller than the average goblin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4497, + "name": "Grubfoot", + "examine": "Smaller than the average goblin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4498, + "name": "Grubfoot", + "examine": "Smaller than the average goblin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4499, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 5, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4500, + "name": "Scarab swarm", + "examine": "I think they\u0027re some kind of beetle.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4501, + "name": "Ethereal Man", + "examine": "Is he real or is it just my imagination?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4502, + "name": "Ethereal Lady", + "examine": "Does she really exist?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4503, + "name": "Ethereal Numerator", + "examine": "He reminds me of my old mathematics teacher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4504, + "name": "Ethereal Expert", + "examine": "The master of accomplishment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4505, + "name": "Ethereal Perceptive", + "examine": "He knows what is possible.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4506, + "name": "Ethereal Guide", + "examine": "He knows the past, present and future. But what of my shoe size?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4507, + "name": "Ethereal Fluke", + "examine": "Luck is probably on his side.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4508, + "name": "Ethereal Mimic", + "examine": "I wanna be like you-ooo-ooo!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4509, + "name": "Me", + "examine": "It\u0027s like looking in the mirror.", + "respawn": 10, + "combat": 79, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4510, + "name": "Me", + "examine": "It\u0027s like looking in the mirror.", + "respawn": 10, + "combat": 79, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4511, + "name": "Oneiromancer", + "examine": "Spiritual leader of the Moonclan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4512, + "name": "House", + "examine": "The craziest house I ever did see!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4513, + "name": "Baba Yaga", + "examine": "An old woman who lives in a very strange house.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4514, + "name": "Pauline Polaris", + "examine": "She has a certain twinkle in her eye.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4515, + "name": "Meteora", + "examine": "As beautiful as a fallen star... I feel sick.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4516, + "name": "Melana Moonlander", + "examine": "Did she just wink at me?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4517, + "name": "Selene", + "examine": "In a world of her own.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4518, + "name": "Rimae Sirsalis", + "examine": "Not a single hair on her head. But one or two warts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4519, + "name": "Sirsal Banker", + "examine": "Glad to be one of only three men on the island.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4520, + "name": "Clan Guard", + "examine": "He smells a bit funny.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4521, + "name": "Enchanted Broom", + "examine": "How does it see where to sweep?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4522, + "name": "Enchanted Broom", + "examine": "A broom driven by magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4523, + "name": "Enchanted Broom", + "examine": "A broom driven by magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4524, + "name": "Enchanted Bucket", + "examine": "I\u0027m not sure if it\u0027s actually doing anything of use.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4525, + "name": "Enchanted Bucket", + "examine": "I\u0027m not sure if it\u0027s actually doing anything of use.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4526, + "name": "Bouquet Mac Hyacinth", + "examine": "Should I pronounce it \u0027bucket\u0027?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4527, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4528, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4529, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4530, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4531, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4532, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4533, + "name": "Suqah", + "examine": "A strange creature unique to Lunar Isle.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4534, + "name": "Moss giant", + "examine": "His beard seems to have a life of its own.", + "respawn": 10, + "combat": 48, + "hitpoints": 85, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 110, + "defenceMelee": 110, + "defenceRange": 110, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4535, + "name": "Parrot", + "examine": "It\u0027s a parrot.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4536, + "name": "Lokar Searunner", + "examine": "Oldak\u0027s new assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4537, + "name": "Lokar Searunner", + "examine": "Either a very fremennikey pirate, or a very piratey fremennik.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4538, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4539, + "name": "Cabin boy", + "examine": "I always wondered what that job description actually meant...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4540, + "name": "Captain Bentley", + "examine": "The High Priest has been transformed into an avatar of Bandos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4541, + "name": "\u0027Beefy\u0027 Burns", + "examine": "A stickler for hygiene in the kitchen.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4542, + "name": "\u0027Eagle-eye\u0027 Shultz", + "examine": "A keen-eyed lookout with a telescope.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4543, + "name": "First mate \u0027Davey-boy\u0027", + "examine": "First mate to Captain Bentley.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4544, + "name": "\u0027Birds-Eye\u0027 Jack", + "examine": "A pirate that can navigate better than a bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4545, + "name": "\u0027Picarron\u0027 Pete", + "examine": "A pirate through and through.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4546, + "name": "Jake", + "examine": "A deadly pirate.", + "respawn": 10, + "combat": 37, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4547, + "name": "Bedread the bold", + "examine": "He got his name from his favourite hobby. Reading about beds.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4548, + "name": "Wilson", + "examine": "A pirate.", + "respawn": 10, + "combat": 37, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4549, + "name": "Tommy 2-times", + "examine": "Nobody really knows why he\u0027s called Tommy 2-times...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4550, + "name": "Murky Pat", + "examine": "Don\u0027t look him straight in the eyes. He\u0027ll eat you alive!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4551, + "name": "Jack Sails", + "examine": "Nice beard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4552, + "name": "Palmer", + "examine": "Nice shave.", + "respawn": 10, + "combat": 37, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4553, + "name": "\u0027Betty\u0027 B.Boppin", + "examine": "He never stops talking about Betty...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4554, + "name": "\u0027Beedy-eye\u0027 Jones", + "examine": "Is he looking at me?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4555, + "name": "Jenny Blade", + "examine": "Yes, it is indeed the infamous Jenny Blade!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4556, + "name": "\u0027Lecherous\u0027 Lee", + "examine": "A low-down, mean, dirty, cheating pirate with a fondness for kittens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4557, + "name": "\u0027Sticky\u0027 Sanders", + "examine": "Apparently his nickname comes from his fondness for jam.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4558, + "name": "Hirko", + "examine": "A seller of crossbow parts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4559, + "name": "Holoy", + "examine": "A seller of crossbow parts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4560, + "name": "Frizzy Skernip", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4561, + "name": "Yulf Squecks", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4562, + "name": "Praistan Ebola", + "examine": "Perhaps this gardener might look after your crops for you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4563, + "name": "Hura", + "examine": "A seller of crossbow parts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4564, + "name": "Digsite workman", + "examine": "This person is working on the site.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4565, + "name": "Digsite workman", + "examine": "This person is working on the site.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4566, + "name": "Examiner", + "examine": "Upon examining the examiner you examine it is indeed an examiner!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4567, + "name": "Examiner", + "examine": "Upon examining the examiner you examine it is indeed an examiner!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4568, + "name": "Researcher", + "examine": "Must be hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4569, + "name": "Nick", + "examine": "A man busily panning.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4570, + "name": "Mounted terrorchick gnome", + "examine": "A farmer\u0027s enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4571, + "name": "Terrorchick gnome", + "examine": "A farmer\u0027s enemy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4572, + "name": "Gianne jnr.", + "examine": "The delivery honcho!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4573, + "name": "Timble", + "examine": "An underpayed gnome!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4574, + "name": "Tamble", + "examine": "An overworked gnome!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4575, + "name": "Spang", + "examine": "A lazy gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4576, + "name": "Brambickle", + "examine": "He looks like he\u0027s a long way from home.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4577, + "name": "Wingstone", + "examine": "He looks like he\u0027s a long way from home.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4578, + "name": "Penwie", + "examine": "He looks like he\u0027s a long way from home.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4579, + "name": "Generic Diplomat", + "examine": "He\u0027s very diplomatic", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4580, + "name": "Ambassador Gimblewap", + "examine": "He\u0027s very diplomatic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4581, + "name": "Ambassador Spanfipple", + "examine": "Peaceful man!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4582, + "name": "Ambassador Ferrnook", + "examine": "Peaceful man!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4583, + "name": "Professor Manglethorp", + "examine": "Crazy professor!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4584, + "name": "Damwin", + "examine": "Bubbly cheerleader!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4585, + "name": "Professor Onglewip", + "examine": "A gnome mage on sabbatical.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4586, + "name": "Professor Imblewyn", + "examine": "A visiting gnome mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4587, + "name": "Perrdur", + "examine": "Gnome customer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4588, + "name": "Dalila", + "examine": "Gnome customer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4589, + "name": "Sorrn", + "examine": "Gnome customer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4590, + "name": "Mimm", + "examine": "A female gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4591, + "name": "Eebel", + "examine": "A gnome whom likes antiques.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4592, + "name": "Ermin", + "examine": "A gnome spinner.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4593, + "name": "Portobello", + "examine": "Pilot Veteran.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4594, + "name": "Captain Ninto", + "examine": "A gnome pilot off duty, he looks a bit worse for wear...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4595, + "name": "Captain Daerkin", + "examine": "A gnome pilot off duty, he looks a bit drunk.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4596, + "name": "Captain Lamdoo", + "examine": "A gnome pilot coming to get you!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4597, + "name": "Meegle", + "examine": "He looks after the terrorbirds.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4598, + "name": "Wurbel", + "examine": "He looks like a big gnomeball fan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4599, + "name": "Sarble", + "examine": "She tends the toads and worms in the swamp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4600, + "name": "Guard Vemmeldo", + "examine": "He looks alert and ready for action.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4601, + "name": "Burkor", + "examine": "A lean mean gnome fighting machine.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4602, + "name": "Froono", + "examine": "He looks like he needs something useful to do.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4603, + "name": "Fortress Guard", + "examine": "A generic evil henchman.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4604, + "name": "Fortress Guard", + "examine": "A generic evil henchman.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4605, + "name": "Fortress Guard", + "examine": "A generic evil henchman.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4606, + "name": "Fortress Guard", + "examine": "A generic evil henchman.", + "respawn": 10, + "combat": 20, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4607, + "name": "Black Cat", + "examine": "A witch\u0027s black cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4608, + "name": "Monk", + "examine": "An unusually aggressive cleric.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4609, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4610, + "name": "Brimstail", + "examine": "Small but wise, he is.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4611, + "name": "Saboteur", + "examine": "All you see is a glimmer of light and the suggestion of shadow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4612, + "name": "Gnome shop keeper", + "examine": "Sells gnomish things.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4613, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4614, + "name": "Cute creature", + "examine": "Ahhh. Isn\u0027t it cute?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4615, + "name": "Evil creature", + "examine": "What is that thing!", + "respawn": 10, + "combat": 0, + "hitpoints": 1, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4616, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4617, + "name": "Cute creature", + "examine": "Ahhh. Isn\u0027t it cute?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4618, + "name": "Evil creature", + "examine": "What is that thing!", + "respawn": 10, + "combat": 0, + "hitpoints": 1, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4619, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4620, + "name": "Cute creature", + "examine": "Ahhh. Isn\u0027t it cute?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4621, + "name": "Evil creature", + "examine": "What is that thing!", + "respawn": 10, + "combat": 0, + "hitpoints": 1, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4622, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4623, + "name": "Cute creature", + "examine": "Ahhh. Isn\u0027t it cute?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4624, + "name": "Evil creature", + "examine": "What is that thing!", + "respawn": 10, + "combat": 0, + "hitpoints": 1, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4625, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4626, + "name": "Cute creature", + "examine": "Ahhh. Isn\u0027t it cute?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4627, + "name": "Evil creature", + "examine": "What is that thing!", + "respawn": 10, + "combat": 0, + "hitpoints": 1, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4628, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4629, + "name": "Cute creature", + "examine": "Ahhh. Isn\u0027t it cute?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4630, + "name": "Evil creature", + "examine": "What is that thing!", + "respawn": 10, + "combat": 0, + "hitpoints": 1, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 1, + "defenceMelee": 1, + "defenceRange": 1, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4631, + "name": "Fluffie", + "examine": "A small fluffy inhabitant of the Grand Tree.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4632, + "name": "Fluffie", + "examine": "A spy of Glouphrie.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4633, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4634, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4635, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4636, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4637, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4638, + "name": "Gnome soldier", + "examine": "A little warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4639, + "name": "Gnome soldier", + "examine": "A little warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4640, + "name": "Gnome soldier", + "examine": "A little warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4641, + "name": "Gnome soldier", + "examine": "A little warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4642, + "name": "Gnome soldier", + "examine": "A little warrior.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4643, + "name": "Healthorg and tortoise", + "examine": "King Healthorg riding his War Tortoise.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4644, + "name": "Oaknock the Engineer", + "examine": "Can he build it? Yes he can!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4645, + "name": "Glouphrie the Untrusted", + "examine": "A weasly, shifty-looking Gnome Mage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4646, + "name": "King Healthorg", + "examine": "The greatest Gnome King of them all.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4647, + "name": "Hazelmere", + "examine": "A familiar looking young gnome.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4648, + "name": "Nisha", + "examine": "A woman busily panning.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4649, + "name": "Tyras guard", + "examine": "One of King Tyras\u0027s men.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4650, + "name": "Trader Stan", + "examine": "With the prices he charges, no wonder he can afford to look so sharp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4651, + "name": "Trader Crewmember", + "examine": "Looks very stylish, but how can he sail in that gear?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4652, + "name": "Trader Crewmember", + "examine": "That suit looks a little briny around the edges.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4653, + "name": "Trader Crewmember", + "examine": "First storm he is in that hat will blow away.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4654, + "name": "Trader Crewmember", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4655, + "name": "Trader Crewmember", + "examine": "High heels on a ship? What is she thinking?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4656, + "name": "Trader Crewmember", + "examine": "The effect is sort of spoiled by all those tattoos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4657, + "name": "Sir Prysin", + "examine": "One of the king\u0027s knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4658, + "name": "Dark wizard", + "examine": "He works evil magic.", + "respawn": 10, + "combat": 7, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4659, + "name": "Dark wizard", + "examine": "He works evil magic.", + "respawn": 10, + "combat": 7, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4660, + "name": "Dark wizard", + "examine": "He works evil magic.", + "respawn": 10, + "combat": 20, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4661, + "name": "Dark wizard", + "examine": "He works evil magic.", + "respawn": 10, + "combat": 20, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4662, + "name": "Denath", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4663, + "name": "Denath", + "examine": "A practicer of dark arts.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4664, + "name": "Wally", + "examine": "Wally.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4665, + "name": "Baby dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4666, + "name": "Baby dragon", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4667, + "name": "Baby dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4668, + "name": "Baby dragon", + "examine": "Young but still dangerous.", + "respawn": 10, + "combat": 48, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4669, + "name": "Red dragon", + "examine": "A big powerful dragon.", + "respawn": 10, + "combat": 152, + "hitpoints": 140, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4670, + "name": "Red dragon", + "examine": "A big powerful dragon.", + "respawn": 10, + "combat": 152, + "hitpoints": 140, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4671, + "name": "Red dragon", + "examine": "A big powerful dragon.", + "respawn": 10, + "combat": 152, + "hitpoints": 140, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4672, + "name": "Red dragon", + "examine": "A big powerful dragon.", + "respawn": 10, + "combat": 152, + "hitpoints": 140, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 182, + "defenceMelee": 182, + "defenceRange": 182, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4673, + "name": "Black dragon", + "examine": "A fierce dragon with black scales!", + "respawn": 10, + "combat": 227, + "hitpoints": 190, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 247, + "defenceMelee": 247, + "defenceRange": 247, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4674, + "name": "Black dragon", + "examine": "A fierce dragon with black scales!", + "respawn": 10, + "combat": 227, + "hitpoints": 190, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 247, + "defenceMelee": 247, + "defenceRange": 247, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4675, + "name": "Black dragon", + "examine": "A fierce dragon with black scales!", + "respawn": 10, + "combat": 227, + "hitpoints": 190, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 247, + "defenceMelee": 247, + "defenceRange": 247, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4676, + "name": "Black dragon", + "examine": "A fierce dragon with black scales!", + "respawn": 10, + "combat": 227, + "hitpoints": 190, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 247, + "defenceMelee": 247, + "defenceRange": 247, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4677, + "name": "Green dragon", + "examine": "Must be related to Elvarg.", + "respawn": 10, + "combat": 79, + "hitpoints": 75, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4678, + "name": "Green dragon", + "examine": "Must be related to Elvarg.", + "respawn": 10, + "combat": 79, + "hitpoints": 75, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4679, + "name": "Green dragon", + "examine": "Must be related to Elvarg.", + "respawn": 10, + "combat": 79, + "hitpoints": 75, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4680, + "name": "Green dragon", + "examine": "Must be related to Elvarg.", + "respawn": 10, + "combat": 79, + "hitpoints": 75, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 97, + "defenceMelee": 97, + "defenceRange": 97, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4681, + "name": "Blue dragon", + "examine": "A mother dragon.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4682, + "name": "Blue dragon", + "examine": "A mother dragon.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4683, + "name": "Blue dragon", + "examine": "A mother dragon.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4684, + "name": "Blue dragon", + "examine": "A mother dragon.", + "respawn": 10, + "combat": 111, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4685, + "name": "Ice giant", + "examine": "He\u0027s got icicles in his beard.", + "respawn": 10, + "combat": 53, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4686, + "name": "Ice giant", + "examine": "He\u0027s got icicles in his beard.", + "respawn": 10, + "combat": 53, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4687, + "name": "Ice giant", + "examine": "He\u0027s got icicles in his beard.", + "respawn": 10, + "combat": 53, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4688, + "name": "Moss giant", + "examine": "His beard seems to have a life of its own.", + "respawn": 10, + "combat": 42, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4689, + "name": "Hill Giant", + "examine": "A very large foe.", + "respawn": 10, + "combat": 28, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4690, + "name": "Hill Giant", + "examine": "A very large foe.", + "respawn": 10, + "combat": 28, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4691, + "name": "Hill Giant", + "examine": "A very large foe.", + "respawn": 10, + "combat": 28, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4692, + "name": "Hill Giant", + "examine": "A very large foe.", + "respawn": 10, + "combat": 28, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4693, + "name": "Hill Giant", + "examine": "A very large foe.", + "respawn": 10, + "combat": 28, + "hitpoints": 35, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4694, + "name": "Lesser demon", + "examine": "Lesser, but still pretty big.", + "respawn": 10, + "combat": 82, + "hitpoints": 79, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4695, + "name": "Lesser demon", + "examine": "Lesser, but still pretty big.", + "respawn": 10, + "combat": 82, + "hitpoints": 79, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4696, + "name": "Lesser demon", + "examine": "Lesser, but still pretty big.", + "respawn": 10, + "combat": 82, + "hitpoints": 79, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4697, + "name": "Lesser demon", + "examine": "Lesser, but still pretty big.", + "respawn": 10, + "combat": 82, + "hitpoints": 79, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4698, + "name": "Greater demon", + "examine": "Big, purple, and incredibly evil.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4699, + "name": "Greater demon", + "examine": "Big, red, and incredibly evil.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4700, + "name": "Greater demon", + "examine": "Big, red, and incredibly evil.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4701, + "name": "Greater demon", + "examine": "Big, red, and incredibly evil.", + "respawn": 10, + "combat": 92, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4702, + "name": "Black Demon", + "examine": "A big, scary, jet-black demon.", + "respawn": 10, + "combat": 172, + "hitpoints": 157, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 204, + "defenceMelee": 204, + "defenceRange": 204, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4703, + "name": "Black Demon", + "examine": "A big, scary, jet-black demon.", + "respawn": 10, + "combat": 172, + "hitpoints": 157, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 204, + "defenceMelee": 204, + "defenceRange": 204, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4704, + "name": "Black Demon", + "examine": "A big, scary, jet-black demon.", + "respawn": 10, + "combat": 172, + "hitpoints": 157, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 204, + "defenceMelee": 204, + "defenceRange": 204, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4705, + "name": "Black Demon", + "examine": "A big, scary, jet-black demon.", + "respawn": 10, + "combat": 172, + "hitpoints": 157, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 204, + "defenceMelee": 204, + "defenceRange": 204, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4706, + "name": "Moss giant", + "examine": "His beard seems to have a life of its own.", + "respawn": 10, + "combat": 48, + "hitpoints": 85, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 110, + "defenceMelee": 110, + "defenceRange": 110, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4707, + "name": "Magic combat tutor", + "examine": "Mikasi, ready to teach you about Magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4708, + "name": "Old Man Ral", + "examine": "A flea-infested, pale-looking excuse for a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4709, + "name": "Vertida Sefalatis", + "examine": "A quiet, war-weary man with the keen eye of a ranger.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4710, + "name": "Aeonisig Raispher", + "examine": "Roald\u0027s advisor - he seems to be a follower of Saradomin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4711, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4712, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4713, + "name": "Safalaan", + "examine": "A tall, charismatic man of unusual appearance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4714, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4715, + "name": "Sarius Guile", + "examine": "She looks important.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4716, + "name": "Trader Sven", + "examine": "A flea-infested black market trader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4717, + "name": "Meiyerditch citizen", + "examine": "A flea-infested, pale-looking excuse for a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4718, + "name": "Meiyerditch citizen", + "examine": "A flea-infested, pale-looking excuse for a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4719, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4720, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4721, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4722, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4723, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4724, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4725, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4726, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4727, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4728, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4729, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4730, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4731, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4732, + "name": "Meiyerditch citizen", + "examine": "A flea-infested, pale-looking excuse for a woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4733, + "name": "Meiyerditch citizen", + "examine": "A flea-infested, pale-looking excuse for a woman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4734, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4735, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4736, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4737, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4738, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4739, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4740, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4741, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4742, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4743, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4744, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4745, + "name": "Meiyerditch citizen", + "examine": "This citizen looks pale, tired and old!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4746, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4747, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4748, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4749, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4750, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4751, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4752, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4753, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4754, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4755, + "name": "A Meiyerditch child", + "examine": "A poor street urchin!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4756, + "name": "Meiyerditch miner", + "examine": "This citizen looks dirty and tired!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4757, + "name": "Meiyerditch miner", + "examine": "This citizen looks dirty and tired!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4758, + "name": "Meiyerditch miner", + "examine": "This citizen looks dirty and tired!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4759, + "name": "Meiyerditch miner", + "examine": "This citizen looks dirty and tired!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4760, + "name": "Meiyerditch miner", + "examine": "This citizen looks dirty and tired!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4761, + "name": "Meiyerditch miner", + "examine": "This citizen looks dirty and tired!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4762, + "name": "Shadowy figure", + "examine": "A shadowy biped - seems to be covered in fur, with a long snout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4763, + "name": "Shadowy figure", + "examine": "A shadowy biped - seems to be covered in fur, with a long snout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4764, + "name": "Shadowy figure", + "examine": "A shadowy biped - seems to be covered in fur, with a long snout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4765, + "name": "Null", + "examine": "Some rubbish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4766, + "name": "Stray dog", + "examine": "Looks like it\u0027s got fleas!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4767, + "name": "Stray dog", + "examine": "Looks like it\u0027s got fleas!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4768, + "name": "Cat", + "examine": "A smelly cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4769, + "name": "Cat", + "examine": "A smelly cat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4770, + "name": "Boat", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4771, + "name": "Boat", + "examine": "It looks seaworthy now.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4772, + "name": "Juvinate guard", + "examine": "An initiate juvenile vampyre; a guard for the mining area.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4773, + "name": "Juvinate guard", + "examine": "An initiate juvenile vampyre; a guard for the mining area.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4774, + "name": "Vampyre juvenile", + "examine": "A juvenile vampyre.", + "respawn": 10, + "combat": 45, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 4775, + "name": "Vampyre juvenile", + "examine": "A juvenile vampyre.", + "respawn": 10, + "combat": 45, + "hitpoints": 0, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 4776, + "name": "Vampyre juvinate", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4777, + "name": "Vampyre juvinate", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 54, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 4778, + "name": "Held vampyre juvenile", + "examine": "A juvenile vampyre.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4779, + "name": "Held vampyre juvenile", + "examine": "A juvenile vampyre.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4780, + "name": "Held vampyre juvinate", + "examine": "An initiate juvenile vampyre; seems to be a servant.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4781, + "name": "Held vampyre juvinate", + "examine": "An initiate juvenile vampyre.", + "respawn": 10, + "combat": 54, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4782, + "name": "Vampyre juvinate", + "examine": "An initiate juvenile; seems to be a vampyre.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4783, + "name": "Former vampyre", + "examine": "Has been returned from vampyric form to human.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4784, + "name": "Former vampyre", + "examine": "Has been returned from vampyric form to human.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4785, + "name": "Former vampyre", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4786, + "name": "Former vampyre", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4787, + "name": "Former vampyre", + "examine": "Has been returned from vampyric form to human.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4788, + "name": "Former vampyre", + "examine": "Has been returned from vampyric form to human.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4789, + "name": "Angry vampyre", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 64, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4790, + "name": "Angry vampyre", + "examine": "An enraged vampyre!", + "respawn": 10, + "combat": 64, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4791, + "name": "Vanstrom Klause", + "examine": "A curious fellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4792, + "name": "Vanstrom Klause", + "examine": "A curious fellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4793, + "name": "Vanstrom Klause", + "examine": "A curious fellow.", + "respawn": 10, + "combat": 169, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4794, + "name": "Vanstrom Klause", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4795, + "name": "Vanstrom Klause", + "examine": "A thirsty-looking airborne bloodsucker!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4796, + "name": "Vanstrom Klause", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4797, + "name": "Vanescula Drakan", + "examine": "She seems almost human.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4798, + "name": "Vanescula Drakan", + "examine": "She seems almost human.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4799, + "name": "Vanescula Drakan", + "examine": "A female vampyre of incredible power.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4800, + "name": "Vanescula Drakan", + "examine": "A female vampyre of incredible power.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4801, + "name": "Ranis Drakan", + "examine": "He looks haughty and arrogant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4802, + "name": "Ranis Drakan", + "examine": "He looks haughty and arrogant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4803, + "name": "Ranis Drakan", + "examine": "He looks haughty and arrogant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4804, + "name": "Ranis Drakan", + "examine": "He looks haughty and arrogant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4805, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4806, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4807, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4808, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4809, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4810, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4811, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4812, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4813, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4814, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4815, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4816, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4817, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4818, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4819, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4820, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4821, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4822, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4823, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4824, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4825, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4826, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4827, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4828, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4829, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4830, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4831, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4832, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4833, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4834, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4835, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4836, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4837, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4838, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4839, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4840, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4841, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4842, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4843, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4844, + "name": "Vyrewatch", + "examine": "An evil, bloodsucking vampyre.", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4845, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4846, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4847, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4848, + "name": "Flying female vampire", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4849, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 105, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4850, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4851, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 120, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4852, + "name": "Vyrewatch", + "examine": "A thirsty-looking, airborne bloodsucker!", + "respawn": 10, + "combat": 125, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4853, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4854, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4855, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4856, + "name": "Ezekial Lovecraft", + "examine": "Smells a bit fishy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4857, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4858, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4859, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4860, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4861, + "name": "Sarius Guile", + "examine": "She looks important.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4862, + "name": "Vanstrom Klause", + "examine": "A curious fellow.", + "respawn": 10, + "combat": 169, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4863, + "name": "Kennith", + "examine": "He looks very scared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4864, + "name": "Kennith", + "examine": "He looks very scared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4865, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4866, + "name": "Holgart", + "examine": "A very good sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4867, + "name": "Holgart", + "examine": "A very good sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4868, + "name": "Holgart", + "examine": "A very good sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4869, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4870, + "name": "Fisherman", + "examine": "He smells of salty fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4871, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4872, + "name": "Col. O\u0027Niall", + "examine": "A (semi) retired member of the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4873, + "name": "Col. O\u0027Niall", + "examine": "A (semi) retired member of the Temple Knights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4874, + "name": "Mayor Hobb", + "examine": "There\u0027s something fishy about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4875, + "name": "Mayor Hobb", + "examine": "There\u0027s something fishy about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4876, + "name": "Null", + "examine": "There\u0027s something fishy about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4877, + "name": "Null", + "examine": "There\u0027s something fishy about him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4878, + "name": "Brother Maledict", + "examine": "A fresh-faced and innocent priest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4879, + "name": "Brother Maledict", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4880, + "name": "Null", + "examine": "A fresh-faced and innocent priest.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4881, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4882, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4883, + "name": "Witchaven villager", + "examine": "A down on his luck fisherman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4884, + "name": "Witchaven villager", + "examine": "A down on his luck fisherman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4885, + "name": "Witchaven villager", + "examine": "A down on her luck villager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4886, + "name": "Witchaven villager", + "examine": "A down on her luck villager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4887, + "name": "Witchaven villager", + "examine": "A down on his luck villager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4888, + "name": "Witchaven villager", + "examine": "A down on his luck villager.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4889, + "name": "Mother Mallum", + "examine": "An unspeakable horror from the depths of time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4890, + "name": "Slug Prince", + "examine": "A child of aquatic evil.", + "respawn": 10, + "combat": 62, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4891, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4892, + "name": "Giant lobster", + "examine": "Not very tasty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4893, + "name": "Giant Lobster", + "examine": "An extremely vicious lobster.", + "respawn": 10, + "combat": 45, + "hitpoints": 50, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4894, + "name": "Sea slug", + "examine": "A rather nasty looking crustacean.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4895, + "name": "Jeb", + "examine": "A villager named Jeb.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4896, + "name": "Jeb", + "examine": "A villager named Jeb.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4897, + "name": "Sir Tinley", + "examine": "A Temple Knight agent.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4898, + "name": "Hobgoblin", + "examine": "An ugly, smelly creature wielding a spear.", + "respawn": 10, + "combat": 28, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4899, + "name": "Cooking tutor", + "examine": "Cordero, ready to teach you how to cook.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4900, + "name": "Crafting tutor", + "examine": "Cadmus, looking a little bit crafty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4901, + "name": "Fishing tutor", + "examine": "Finlay, mending a crayfish cage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4902, + "name": "Mining tutor", + "examine": "Monlum, prospecting rocks.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4903, + "name": "Prayer tutor", + "examine": "Yauchomi, a follower of Saradomin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4904, + "name": "Smithing apprentice", + "examine": "Feoras, looking a bit fiery.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4905, + "name": "Master smithing tutor", + "examine": "Sani, a master smith.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4906, + "name": "Woodsman tutor", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4907, + "name": "Banker tutor", + "examine": "Barb, ready to teach you about banking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4908, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4909, + "name": "Fritz the Glassblower", + "examine": "His motives are see-through.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4910, + "name": "Earth elemental", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 35, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4911, + "name": "Elemental rock", + "examine": "An elemental rock.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4912, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4913, + "name": "Jig cart", + "examine": "A cart with a jig built into it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4914, + "name": "Jig cart", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4915, + "name": "Jig cart", + "examine": "A cart with a jig built into it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4916, + "name": "Jig cart", + "examine": "A cart with a jig built into it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4917, + "name": "Jig cart", + "examine": "A cart with a jig built into it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4918, + "name": "Jig cart", + "examine": "A cart with a jig built into it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4919, + "name": "Abidor Crank", + "examine": "The good samaritan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4920, + "name": "Giant crypt rat", + "examine": "A nasty overgrown rodent.", + "respawn": 10, + "combat": 76, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4921, + "name": "Giant crypt rat", + "examine": "A nasty overgrown rodent.", + "respawn": 10, + "combat": 76, + "hitpoints": 70, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4922, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4923, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4924, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4925, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4926, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 6, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4927, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 6, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4928, + "name": "Dungeon rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 12, + "hitpoints": 12, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4929, + "name": "Dungeon rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 12, + "hitpoints": 12, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4930, + "name": "Goat", + "examine": "They\u0027ll eat anything!", + "respawn": 10, + "combat": 23, + "hitpoints": 21, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 27, + "defenceMelee": 27, + "defenceRange": 27, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4931, + "name": "Goat", + "examine": "They\u0027ll eat anything!", + "respawn": 10, + "combat": 23, + "hitpoints": 21, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 27, + "defenceMelee": 27, + "defenceRange": 27, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4932, + "name": "Billy Goat", + "examine": "They\u0027ll eat anything!", + "respawn": 10, + "combat": 33, + "hitpoints": 28, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 36, + "defenceMelee": 36, + "defenceRange": 36, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4933, + "name": "Goat", + "examine": "They\u0027ll eat anything!", + "respawn": 10, + "combat": 23, + "hitpoints": 21, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 27, + "defenceMelee": 27, + "defenceRange": 27, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4934, + "name": "Goat", + "examine": "They\u0027ll eat anything!", + "respawn": 10, + "combat": 23, + "hitpoints": 21, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 27, + "defenceMelee": 27, + "defenceRange": 27, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4935, + "name": "Billy Goat", + "examine": "They\u0027ll eat anything!", + "respawn": 10, + "combat": 33, + "hitpoints": 28, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 36, + "defenceMelee": 36, + "defenceRange": 36, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4936, + "name": "Dungeon rat", + "examine": "A dirty rat.", + "respawn": 10, + "combat": 12, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4937, + "name": "Dungeon rat", + "examine": "A dirty rat.", + "respawn": 10, + "combat": 12, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4938, + "name": "Angry giant rat", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4939, + "name": "Angry giant rat", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4940, + "name": "Angry giant rat", + "examine": "He looks a little on the cross side!", + "respawn": 10, + "combat": 47, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 0, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4941, + "name": "Blessed giant rat", + "examine": "It\u0027s one of Iban\u0027s pet vermin.", + "respawn": 10, + "combat": 9, + "hitpoints": 30, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4942, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4943, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 5, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4944, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 26, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4945, + "name": "Giant rat", + "examine": "Overgrown vermin.", + "respawn": 10, + "combat": 26, + "hitpoints": 25, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 138, + "defenceAnim": 139, + "deathAnim": 141, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4946, + "name": "Ignatius Vulcan", + "examine": "The Master of Fire!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4947, + "name": "My Arm", + "examine": "Trollish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4948, + "name": "My Arm", + "examine": "Trollish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4949, + "name": "My Arm", + "examine": "Trollish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4950, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4951, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4952, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4953, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4954, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4955, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4956, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4957, + "name": "My Arm", + "examine": "He\u0027s poking his farming patch with my dibber.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4958, + "name": "My Arm", + "examine": "He has a bucket and he\u0027s not afraid to use it.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4959, + "name": "My Arm", + "examine": "My rake is in the hand of My Arm.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4960, + "name": "Adventurer", + "examine": "He\u0027s in a pretty nasty spot, in a pretty nasty pot. With some cabbage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4961, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4962, + "name": "Captain Barnaby", + "examine": "An old sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4963, + "name": "Murcaily", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4964, + "name": "Jagbakoba", + "examine": "A native of Tai Bwo Wannai.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4965, + "name": "Tool Leprechaun", + "examine": "It\u0027s a leprechaun sunbathing on a mountain.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4966, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4967, + "name": "Flies", + "examine": "They like to hover around bad smells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4968, + "name": "Unnamed troll child", + "examine": "A little troll who has no name.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4969, + "name": "Drunken dwarf\u0027s leg", + "examine": "Named after the first thing he tried to eat...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4970, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4971, + "name": "Baby Roc", + "examine": "A mountain-dwelling bird. Cute, but vicious.", + "respawn": 10, + "combat": 75, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4972, + "name": "Giant Roc", + "examine": "A very, very large mountain-dwelling bird.", + "respawn": 10, + "combat": 172, + "hitpoints": 200, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 260, + "defenceMelee": 260, + "defenceRange": 260, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 4973, + "name": "Shadow", + "examine": "Something nasty this way comes...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4974, + "name": "Captain Barnaby", + "examine": "An old sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4975, + "name": "Male slave", + "examine": "It looks like he\u0027s been here a long time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4976, + "name": "Male slave", + "examine": "It looks like he\u0027s been here a long time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4977, + "name": "Female slave", + "examine": "She looks like she\u0027s been down here a long time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4978, + "name": "Female slave", + "examine": "She looks like she\u0027s been down here a long time.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4979, + "name": "Cart Camel", + "examine": "A big strong camel, used for pulling carts full of minerals.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4980, + "name": "Mine Cart", + "examine": "It\u0027s Ana... in a barrel... in a mine cart.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4981, + "name": "Mine Cart", + "examine": "It\u0027s an empty mine cart.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4982, + "name": "Ana", + "examine": "Stuffed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4983, + "name": "Mercenary", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4984, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4985, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4986, + "name": "Null", + "examine": "A resident of Al-Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4987, + "name": "Null", + "examine": "A resident of Al-Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4988, + "name": "Irena", + "examine": "A resident of Al-Kharid.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4989, + "name": "Mercenary", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4990, + "name": "Mercenary", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4991, + "name": "Mercenary", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4992, + "name": "Mercenary", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4993, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4994, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4995, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4996, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4997, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4998, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 4999, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5000, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5001, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5002, + "name": "Guard", + "examine": "He looks a bit aggressive.", + "respawn": 10, + "combat": 45, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5003, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5004, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5005, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5006, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5007, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5008, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5009, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5010, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5011, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5012, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5013, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5014, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5015, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5016, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5017, + "name": "Gublinch", + "examine": "A sweaty gublinch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5018, + "name": "Gublinch", + "examine": "A chilled, smelly gublinch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5019, + "name": "Gublinch", + "examine": "A freezing cold gublinch.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5020, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5021, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5022, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5023, + "name": "Jack", + "examine": "A happy child, now that he has been freed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5024, + "name": "Jill", + "examine": "A happy child, now that she has been freed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5025, + "name": "Jeff", + "examine": "A happy child, now that he has been freed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5026, + "name": "Egg launcher", + "examine": "An egg launcher!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5027, + "name": "Egg launcher", + "examine": "An egg launcher!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5028, + "name": "Egg launcher", + "examine": "An egg launcher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5029, + "name": "Commander Connad", + "examine": "A slightly more approachable barbarian.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5030, + "name": "Captain Cain", + "examine": "He looks pretty mean.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5031, + "name": "Private Paldo", + "examine": "A stressed out barbarian private.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5032, + "name": "Private Pendron", + "examine": "A barbarian private.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5033, + "name": "Private Pierreb", + "examine": "A barbarian private.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5034, + "name": "Private Paldon", + "examine": "A barbarian private.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5035, + "name": "Major Attack", + "examine": "A barbarian army teacher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5036, + "name": "Major Collect", + "examine": "A barbarian army teacher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5037, + "name": "Major Defend", + "examine": "A barbarian army teacher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5038, + "name": "Major Heal", + "examine": "A barbarian army teacher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5039, + "name": "Sergeant Sambur", + "examine": "He\u0027s keeping a close eye on that nearby door.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5040, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5041, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5042, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5043, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5044, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5045, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 32, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5046, + "name": "Jack", + "examine": "A happy child playing with his friends.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5047, + "name": "Jill", + "examine": "A happy child playing with her friends.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5048, + "name": "Jeff", + "examine": "A happy child playing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5049, + "name": "Auguste", + "examine": "Balloonist extraordinaire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5050, + "name": "Auguste", + "examine": "Balloonist extraordinaire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5051, + "name": "Auguste", + "examine": "Balloonist extraordinaire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5052, + "name": "Auguste", + "examine": "Balloonist extraordinaire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5053, + "name": "Assistant Serf", + "examine": "A helpful assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5054, + "name": "Assistant Brock", + "examine": "A helpful assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5055, + "name": "Assistant Marrow", + "examine": "A helpful assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5056, + "name": "Assistant Le Smith", + "examine": "A helpful assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5057, + "name": "Assistant Stan", + "examine": "A helpful assistant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5058, + "name": "Bob", + "examine": "He doesn\u0027t like change.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5059, + "name": "Curly", + "examine": "He\u0027s an angry man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5060, + "name": "Moe", + "examine": "Not much to look at.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5061, + "name": "Larry", + "examine": "Not fond of witches.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5062, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5063, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5064, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5065, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5066, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5067, + "name": "Shark", + "examine": "Time to run away...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5068, + "name": "Shark", + "examine": "Time to run away...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5069, + "name": "Shark", + "examine": "Time to run away...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5070, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5071, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5072, + "name": "Tropical wagtail", + "examine": "It blends in very well with its surroundings.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5073, + "name": "Crimson swift", + "examine": "This bird obviously doesn\u0027t believe in subtlety.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5074, + "name": "Cerulean twitch", + "examine": "Best served ice cold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5075, + "name": "Golden warbler", + "examine": "Actually, golden screecher might be a more appropriate name.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5076, + "name": "Copper longtail", + "examine": "Nothing much to get in a flap about.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5077, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5078, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5079, + "name": "Chinchompa", + "examine": "It looks fluffy and cute; it\u0027s probably deadly.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5080, + "name": "Carnivorous chinchompa", + "examine": "It looks fluffy and cute; it\u0027s probably deadly.", + "respawn": 10, + "combat": 2, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5081, + "name": "Ferret", + "examine": "Wild.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5082, + "name": "Black warlock", + "examine": "A black warlock. The air seems to distort wherever it passes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5083, + "name": "Snowy knight", + "examine": "It\u0027s a snowy knight butterfly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5084, + "name": "Sapphire glacialis", + "examine": "A sapphire glacialis. It doesn\u0027t look as pretentious as its name sounds.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5085, + "name": "Ruby harvest", + "examine": "It\u0027s a ruby harvest butterfly.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5086, + "name": "Prickly kebbit", + "examine": "Curls up into a ball to protect itself from attack.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5087, + "name": "Sabre-toothed kebbit", + "examine": "Now that\u0027s a big overbite.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5088, + "name": "Barb-tailed kebbit", + "examine": "It uses its tail to hunt and skewer fish.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5089, + "name": "Wild kebbit", + "examine": "That\u0027s a mean looking set of claws.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5090, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5091, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5092, + "name": "Matthias", + "examine": "He\u0027s wearing a single glove; how strange.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5093, + "name": "Matthias", + "examine": "He\u0027s wearing a single glove; how strange.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5094, + "name": "Gyr Falcon", + "examine": "It looks like it has caught something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5095, + "name": "Gyr Falcon", + "examine": "It looks like it has caught something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5096, + "name": "Gyr Falcon", + "examine": "It looks like it has caught something.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5097, + "name": "Gyr Falcon", + "examine": "A trained hunting bird.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5098, + "name": "Spotted kebbit", + "examine": "It seems to be on a permanent sugar rush.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5099, + "name": "Dark kebbit", + "examine": "Quieter than a ninja mouse with slippers on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5100, + "name": "Dashing kebbit", + "examine": "Now you see it; now you don\u0027t.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5101, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5102, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5103, + "name": "Sabre-toothed kyatt", + "examine": "It\u0027s just like a big, white, furry, deadly can opener.", + "respawn": 10, + "combat": 60, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5104, + "name": "Spined larupia", + "examine": "If you tried to ride that, you\u0027d just impale yourself!", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5105, + "name": "Horned graahk", + "examine": "Get in a graahk\u0027s way and you\u0027re going to know about it...however briefly.", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5106, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5107, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5108, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5109, + "name": "Artimeus", + "examine": "He looks like he knows what he\u0027s doing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5110, + "name": "Aleck", + "examine": "He acts as if he owns the place.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5111, + "name": "Leon", + "examine": "He seems to be making odd sucking noises with his teeth.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5112, + "name": "Hunting expert", + "examine": "He must be good at hunting; even his hair blends in with the surroundings.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5113, + "name": "Hunting expert", + "examine": "With all the furs, I almost mistook her for a wild animal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5114, + "name": "Orange salamander", + "examine": "Slightly slimy but kind of cute.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5115, + "name": "Red salamander", + "examine": "Slightly slimy but certainly striking.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5116, + "name": "Black salamander", + "examine": "Slightly slimy and somewhat menacing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5117, + "name": "Swamp lizard", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5118, + "name": "Null", + "examine": "Very slimy and generally disgusting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5119, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5120, + "name": "Eagle", + "examine": "A very large, very dangerous-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5121, + "name": "Eagle", + "examine": "A very large, very dangerous, very sandy-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5122, + "name": "Eagle", + "examine": "A very large, very dangerous-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5123, + "name": "Eagle", + "examine": "A very large, very dangerous, very cold-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5124, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5125, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5126, + "name": "Nickolaus", + "examine": "He looks a bit worse for wear, but he seems cheerful enough.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5127, + "name": "Nickolaus", + "examine": "He looks a bit worse for wear, but he seems cheerful enough.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5128, + "name": "Nickolaus", + "examine": "He looks a bit worse for wear, but he seems cheerful enough.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5129, + "name": "Nickolaus", + "examine": "He looks like an eagle with no fashion sense.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5130, + "name": "Desert eagle", + "examine": "A very large, very dangerous, very sandy-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5131, + "name": "Jungle eagle", + "examine": "A very large, very dangerous-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5132, + "name": "Polar eagle", + "examine": "A very large, very dangerous, very cold-looking birdy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5133, + "name": "Eagle", + "examine": "It seems to be protecting the nest.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5134, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5135, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5136, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5137, + "name": "Kebbit", + "examine": "A little bigger than usual...", + "respawn": 10, + "combat": 13, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5138, + "name": "Charlie", + "examine": "One of the zookeepers; enjoys locking up animals in small pens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5139, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5140, + "name": "Boulder", + "examine": "Now, who put that there? It\u0027s too suspicious and round to be natural.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5141, + "name": "Uri", + "examine": "Uri Molotov - shaken, not stirred.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5142, + "name": "Uri", + "examine": "Uri Molotov - shaken, not stirred.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5143, + "name": "Uri", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5144, + "name": "Double agent", + "examine": "He\u0027s playing both sides!", + "respawn": 10, + "combat": 65, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5145, + "name": "Double agent", + "examine": "He\u0027s playing both sides!", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5146, + "name": "Li\u0027l lamb", + "examine": "How cute!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5147, + "name": "Lamb", + "examine": "The black sheep of the family.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5148, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5149, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5150, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5151, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5152, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5153, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5154, + "name": "Sheep", + "examine": "White and shaggy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5155, + "name": "Sheep", + "examine": "White and shaggy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5156, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5157, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5158, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5159, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5160, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5161, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5162, + "name": "Sheep", + "examine": "White and shaggy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5163, + "name": "Sheep", + "examine": "White and shaggy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5164, + "name": "Sheep", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5165, + "name": "Sheep", + "examine": "Freshly sheared.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5166, + "name": "Mountain Goat", + "examine": "This goat belongs to the mountain camp people.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5167, + "name": "Mountain Goat", + "examine": "This goat belongs to the mountain camp people.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5168, + "name": "Ram", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5169, + "name": "Ram", + "examine": "White and fluffy.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5170, + "name": "Ram", + "examine": "White and shaggy.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5171, + "name": "Mountain goat", + "examine": "This beast doesn\u0027t need climbing boots.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5172, + "name": "Golden sheep", + "examine": "Freshly shorn.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5173, + "name": "Golden sheep", + "examine": "Lovely thick wool.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5174, + "name": "Ogre chieftain", + "examine": "Tough-looking.", + "respawn": 10, + "combat": 81, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": false, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5175, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5176, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5177, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5178, + "name": "Blue dragon", + "examine": "A mother dragon.", + "respawn": 10, + "combat": 27, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5179, + "name": "Ogre shaman", + "examine": "It\u0027s a tree gnome.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5180, + "name": "Null", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5181, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5182, + "name": "Ogre shaman", + "examine": "It\u0027s a tree gnome.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5183, + "name": "Null", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5184, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5185, + "name": "Ogre shaman", + "examine": "He\u0027s in no state to rule a kingdom.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5186, + "name": "Null", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5187, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5188, + "name": "Ogre shaman", + "examine": "It\u0027s Nial, turned into a yeti.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5189, + "name": "Null", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5190, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5191, + "name": "Ogre shaman", + "examine": "A snappy man in an even snappier blazer.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5192, + "name": "Null", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5193, + "name": "Ogre shaman", + "examine": "Seems intelligent... for an ogre.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5194, + "name": "Ogre shaman", + "examine": "A snappy man in an even snappier blazer.", + "respawn": 10, + "combat": 113, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5195, + "name": "Wizard", + "examine": "A wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5196, + "name": "Wizard", + "examine": "A wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5197, + "name": "Wizard", + "examine": "A wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5198, + "name": "Ava", + "examine": "She\u0027s watching you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5199, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5200, + "name": "Witch", + "examine": "The hat\u0027s a dead giveaway.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5201, + "name": "Null", + "examine": "The hat\u0027s a dead giveaway.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5202, + "name": "Alice\u0027s husband", + "examine": "Alice\u0027s husband, passed on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5203, + "name": "Alice\u0027s husband", + "examine": "Alice\u0027s husband, passed on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5204, + "name": "Alice\u0027s husband", + "examine": "Alice\u0027s husband, passed on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5205, + "name": "Alice\u0027s husband", + "examine": "Alice\u0027s husband, passed on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5206, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5207, + "name": "Tree", + "examine": "Its bark is worse than its swipe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5208, + "name": "Undead tree", + "examine": "Its bark is worse than its swipe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5209, + "name": " Sneaky undead fowl", + "examine": "Probably tastes like chicken.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5210, + "name": "Cow31337Killer", + "examine": "He hates cows so much.", + "respawn": 10, + "combat": 123, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5211, + "name": "Undead cow", + "examine": "It\u0027s an undead cow.", + "respawn": 10, + "combat": 2, + "hitpoints": 8, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 59, + "defenceAnim": 60, + "deathAnim": 62, + "attackBonus": 10, + "defenceMelee": 10, + "defenceRange": 10, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": true, + "poisonous": false + }, + { + "id": 5212, + "name": "Alice", + "examine": "She sells Farming equipment.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5213, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 37, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5214, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5215, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 47, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5216, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 56, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5217, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 61, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5218, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5219, + "name": "Penance Fighter", + "examine": "What on Wildy is that?", + "respawn": 10, + "combat": 77, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5220, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5221, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5222, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5223, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5224, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5225, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5226, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5227, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5228, + "name": "Penance Runner", + "examine": "He\u0027s making a run for it!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5229, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 21, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5230, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5231, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 32, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5232, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 38, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5233, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 43, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5234, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 51, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5235, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 57, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5236, + "name": "Penance Ranger", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 64, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5237, + "name": "Penance Ranger", + "examine": "Shooty-shooty.", + "respawn": 10, + "combat": 72, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5238, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5239, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5240, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5241, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5242, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5243, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5244, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5245, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5246, + "name": "Penance Healer", + "examine": "A nasty piece of work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5247, + "name": "Penance Queen", + "examine": "Run away! Run away!", + "respawn": 10, + "combat": 209, + "hitpoints": 250, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 325, + "defenceMelee": 325, + "defenceRange": 325, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5248, + "name": "Queen spawn", + "examine": "What\u0027s it looking at?", + "respawn": 10, + "combat": 63, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5249, + "name": "Captain Errdo", + "examine": "He looks embarrassed", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5250, + "name": "Scarab mage", + "examine": "Part scarab, part man.", + "respawn": 10, + "combat": 93, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5251, + "name": "Locust rider", + "examine": "A mounted lancer.", + "respawn": 10, + "combat": 106, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5252, + "name": "Locust rider", + "examine": "A mounted archer.", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5253, + "name": "Giant scarab", + "examine": "A huge scarab beast.", + "respawn": 10, + "combat": 191, + "hitpoints": 120, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": true + }, + { + "id": 5254, + "name": "Scarab mage", + "examine": "Part scarab, part man.", + "respawn": 10, + "combat": 66, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5255, + "name": "Locust rider", + "examine": "A mounted lancer.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5256, + "name": "Locust rider", + "examine": "A mounted archer.", + "respawn": 10, + "combat": 68, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5257, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5258, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5259, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5260, + "name": "Banker", + "examine": "She can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5261, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5262, + "name": "Stone mason", + "examine": "A stonemason.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5263, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5264, + "name": "Nathifa", + "examine": "The baker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5265, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5266, + "name": "Urbi", + "examine": "Dagger seller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5267, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5268, + "name": "Jamila", + "examine": "Runs the craft stall.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5269, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5270, + "name": "Sophanem guard", + "examine": "A guard of Sophanem.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5271, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5272, + "name": "Sophanem guard", + "examine": "A guard of Sophanem.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5273, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5274, + "name": "Sophanem guard", + "examine": "A guard of Sophanem.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5275, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5276, + "name": "Sophanem guard", + "examine": "A guard of Sophanem.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5277, + "name": "Menaphite guard", + "examine": "A guard of Menaphos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5278, + "name": "Coenus", + "examine": "A guard of Menaphos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5279, + "name": "Jex", + "examine": "Preach, my brother!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5280, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5281, + "name": "Maisa", + "examine": "Not a very convincing disguise.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5282, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5283, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5284, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5285, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5286, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5287, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5288, + "name": "Embalmer", + "examine": "A strange-smelling merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5289, + "name": "Carpenter", + "examine": "A block of a man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5290, + "name": "Linen worker", + "examine": "A dedicated follower of fashion.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5291, + "name": "Priest", + "examine": "Preach, my brother!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5292, + "name": "Giant scarab", + "examine": "A huge scarab beast.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5293, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5294, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5295, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5296, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5297, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5298, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5299, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5300, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5301, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5302, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5303, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5304, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5305, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5306, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5307, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 13, + "hitpoints": 23, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 29, + "defenceMelee": 29, + "defenceRange": 29, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5308, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5309, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5310, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5311, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5312, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5313, + "name": "Zombie", + "examine": "Dead woman walking.", + "respawn": 10, + "combat": 18, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5314, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5315, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5316, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5317, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5318, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5319, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5320, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5321, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5322, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5323, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5324, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5325, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5326, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5327, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5328, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5329, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5330, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5331, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 25, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5332, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5333, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5334, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5335, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 21, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5336, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 21, + "hitpoints": 24, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5337, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 25, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5338, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 25, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5339, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 25, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5340, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 25, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5341, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 45, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5342, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5343, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5344, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5345, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5346, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5347, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5348, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5349, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5350, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5351, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5352, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5353, + "name": "Undead one", + "examine": "A minion of Rashiliyia.", + "respawn": 10, + "combat": 68, + "hitpoints": 47, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 61, + "defenceMelee": 61, + "defenceRange": 61, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5354, + "name": "Undead one", + "examine": "A minion of Rashiliyia.", + "respawn": 10, + "combat": 61, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5355, + "name": "Undead one", + "examine": "The animated dead; one of Rashiliyia\u0027s minions.", + "respawn": 10, + "combat": 68, + "hitpoints": 47, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 61, + "defenceMelee": 61, + "defenceRange": 61, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5356, + "name": "Undead one", + "examine": "The animated dead; one of Rashiliyia\u0027s minions.", + "respawn": 10, + "combat": 68, + "hitpoints": 47, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 61, + "defenceMelee": 61, + "defenceRange": 61, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5357, + "name": "Undead one", + "examine": "The animated dead; one of Rashiliyia\u0027s minions.", + "respawn": 10, + "combat": 73, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5358, + "name": "Undead one", + "examine": "The animated dead; one of Rashiliyia\u0027s minions.", + "respawn": 10, + "combat": 73, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5359, + "name": "Giant skeleton", + "examine": "A giant skeleton.", + "respawn": 10, + "combat": 80, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5360, + "name": "Mummy ashes", + "examine": "A tightly wrapped monster.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5361, + "name": "Null", + "examine": "A fiendish embodiment of water.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5362, + "name": "Null", + "examine": "It appears intelligent and savage.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5363, + "name": "Null", + "examine": "Experimenting with mithril gone bad!", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5364, + "name": "Null", + "examine": "He looks about, blankly.", + "respawn": 10, + "combat": -1, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5365, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 60, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5366, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 60, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5367, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 85, + "hitpoints": 78, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 101, + "defenceMelee": 101, + "defenceRange": 101, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5368, + "name": "Skeleton", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 85, + "hitpoints": 78, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 101, + "defenceMelee": 101, + "defenceRange": 101, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5369, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 77, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5370, + "name": "Ghost", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 77, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5371, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 77, + "hitpoints": 80, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5372, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 76, + "hitpoints": 74, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5373, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 76, + "hitpoints": 74, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5374, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 76, + "hitpoints": 74, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5375, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 30, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5376, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 30, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5377, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 44, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5378, + "name": "Zombie", + "examine": "Dead man walking.", + "respawn": 10, + "combat": 44, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5379, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 53, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5380, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 53, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5381, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 77, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5382, + "name": "Animated steel armour", + "examine": "Animated steel armour.", + "respawn": 10, + "combat": 53, + "hitpoints": 40, + "maxHit": 10, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 451, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 20, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 5383, + "name": "Odovacar", + "examine": "A roving banker.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5384, + "name": "Giant skeleton", + "examine": "A giant skeleton or a giant\u0027s skeleton?", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5385, + "name": "Skeleton", + "examine": "A skeleton in a dress!", + "respawn": 10, + "combat": 94, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5386, + "name": "Skeleton", + "examine": "Achingly thin.", + "respawn": 10, + "combat": 77, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5387, + "name": "Skeleton", + "examine": "Look another skeleton.", + "respawn": 10, + "combat": 81, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5388, + "name": "Skeleton", + "examine": "That skeleton\u0027s grinning at me.", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5389, + "name": "Skeleton", + "examine": "He needs a tan.", + "respawn": 10, + "combat": 59, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5390, + "name": "Skeleton", + "examine": "How do you know if a skeleton\u0027s male or female?", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5391, + "name": "Skeleton", + "examine": "He obviously hasn\u0027t realised he\u0027s dead.", + "respawn": 10, + "combat": 63, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5392, + "name": "Skeleton", + "examine": "Put some meat on those bones!", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5393, + "name": "Zombie", + "examine": "Could his name be \u0027Lurch\u0027?", + "respawn": 10, + "combat": 40, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5394, + "name": "Zombie", + "examine": "Mostly \u0027armless.", + "respawn": 10, + "combat": 42, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5395, + "name": "Zombie", + "examine": "Has anybody told him he\u0027s dead?", + "respawn": 10, + "combat": 47, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5396, + "name": "Zombie", + "examine": "Dave? Is that you?", + "respawn": 10, + "combat": 50, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5397, + "name": "Zombie", + "examine": "Why don\u0027t zombies ever wash?", + "respawn": 10, + "combat": 56, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5398, + "name": "Zombie", + "examine": "A shambling pile of rotten flesh.", + "respawn": 10, + "combat": 61, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5399, + "name": "Zombie", + "examine": "He needs lessons on walking.", + "respawn": 10, + "combat": 67, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5400, + "name": "Zombie", + "examine": "Fred, the undead.", + "respawn": 10, + "combat": 70, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5401, + "name": "Zombie", + "examine": "One of the undead.", + "respawn": 10, + "combat": 72, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5402, + "name": "Zombie", + "examine": "A disgusting zombie.", + "respawn": 10, + "combat": 76, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5403, + "name": "Zombie", + "examine": "Somebody tell him he\u0027s already dead!", + "respawn": 10, + "combat": 80, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5404, + "name": "Zombie", + "examine": "He sure looks grave.", + "respawn": 10, + "combat": 85, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5405, + "name": "Zombie", + "examine": "Can\u0027t a body get any rest around here?", + "respawn": 10, + "combat": 86, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5406, + "name": "Zombie", + "examine": "At least he\u0027s not legless.", + "respawn": 10, + "combat": 90, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5407, + "name": "Zombie", + "examine": "All skin and bones.", + "respawn": 10, + "combat": 95, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5408, + "name": "Zombie", + "examine": "Why zombies? Why now?", + "respawn": 10, + "combat": 98, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5409, + "name": "Zombie", + "examine": "A rotten one.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5410, + "name": "Zombie", + "examine": "Brains...", + "respawn": 10, + "combat": 81, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5411, + "name": "Skeleton", + "examine": "An angry skeleton.", + "respawn": 10, + "combat": 72, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5412, + "name": "Skeleton", + "examine": "Cross bones.", + "respawn": 10, + "combat": 87, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5413, + "name": "Possessed pickaxe", + "examine": "How does it move of its own accord?", + "respawn": 10, + "combat": 50, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5414, + "name": "Animated spade", + "examine": "How does it move of its own accord?", + "respawn": 10, + "combat": 50, + "hitpoints": 40, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 52, + "defenceMelee": 52, + "defenceRange": 52, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5415, + "name": "Terror dog statue", + "examine": "A terrifying statue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5416, + "name": "Terror dog statue", + "examine": "A terrifying statue.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5417, + "name": "Terror dog", + "examine": "A terrifying dog beast.", + "respawn": 10, + "combat": 110, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5418, + "name": "Terror dog", + "examine": "A terrifying dog beast.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5419, + "name": "Tarn", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5420, + "name": "Tarn", + "examine": "A mad man.", + "respawn": 10, + "combat": 69, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5421, + "name": "Mutant tarn", + "examine": "I preferred him when he was human.", + "respawn": 10, + "combat": 69, + "hitpoints": 10, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5422, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 77, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5423, + "name": "Null", + "examine": "A naturalist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5424, + "name": "Larry", + "examine": "A naturalist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5425, + "name": "Larry", + "examine": "A naturalist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5426, + "name": "Larry", + "examine": "A naturalist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5427, + "name": "Null", + "examine": "A Gentoo penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5428, + "name": "Penguin", + "examine": "A Gentoo penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5429, + "name": "Penguin", + "examine": "A Gentoo penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5430, + "name": "Penguin", + "examine": "It\u0027s all black and white to them.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5431, + "name": "KGP Guard", + "examine": "It\u0027s all black and white to them.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5432, + "name": "Pescaling Pax", + "examine": "It\u0027s not easy, not being king.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5433, + "name": "Ping", + "examine": "\u0027Berg bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5434, + "name": "Ping", + "examine": "\u0027Berg bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5435, + "name": "Pong", + "examine": "\u0027Berg bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5436, + "name": "Pong", + "examine": "\u0027Berg bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5437, + "name": "Ping", + "examine": "\u0027Berg bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5438, + "name": "Pong", + "examine": "\u0027Berg bard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5439, + "name": "Null", + "examine": "What restful music!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5440, + "name": "Null", + "examine": "Killer Gentoo Penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5441, + "name": "KGP Agent", + "examine": "Killer Gentoo Penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5442, + "name": "KGP Agent", + "examine": "What restful music!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5443, + "name": "Null", + "examine": "A Macaroni penguin.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5444, + "name": "Noodle", + "examine": "A Macaroni penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5445, + "name": "Penguin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5446, + "name": "Penguin suit", + "examine": "A clockwork penguin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5447, + "name": "Agility Instructor", + "examine": "Instructs agility.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5448, + "name": "Army Commander", + "examine": "An army commander.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5449, + "name": "Penguin", + "examine": "A Gentoo penguin, training.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5450, + "name": "Penguin", + "examine": "A Gentoo penguin, training.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5451, + "name": "Penguin", + "examine": "A Gentoo penguin, training.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5452, + "name": "Icelord", + "examine": "Sturdy cold being.", + "respawn": 10, + "combat": 51, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5453, + "name": "Icelord", + "examine": "Sturdy cold being.", + "respawn": 10, + "combat": 51, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5454, + "name": "Icelord", + "examine": "Sturdy cold being.", + "respawn": 10, + "combat": 51, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5455, + "name": "Icelord", + "examine": "Sturdy cold being.", + "respawn": 10, + "combat": 51, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5456, + "name": "Crusher", + "examine": "I will crush you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5457, + "name": "Crusher", + "examine": "I will crush you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5458, + "name": "Crusher", + "examine": "I will crush you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5459, + "name": "Crusher", + "examine": "I will crush you.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5460, + "name": "Tree", + "examine": "The High Priest has been transformed into an avatar of Bandos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5461, + "name": "Jungle Tree", + "examine": "The High Priest has been transformed into an avatar of Bandos.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5462, + "name": "Tolna", + "examine": "Where did his boot go?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5463, + "name": "Honour guard", + "examine": "The Burgher\u0027s protectors.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5464, + "name": "Honour guard", + "examine": "The Burgher\u0027s protectors.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5465, + "name": "Fridleif Shieldson", + "examine": "Commander of Neitiznot\u0027s guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5466, + "name": "Thakkrad Sigmundson", + "examine": "A young master craftsman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5467, + "name": "Iceberg", + "examine": "Like an icecube\u0027s big, fat uncle.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5468, + "name": "Iceberg", + "examine": "A floating chunk of ice.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5469, + "name": "Evergreen", + "examine": "A hardy evergreen pine.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5470, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5471, + "name": "Fishing spot", + "examine": "It looks like there might be fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5472, + "name": "Ice Troll King", + "examine": "An impressive-looking troll.", + "respawn": 10, + "combat": 122, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5473, + "name": "Ice troll runt", + "examine": "An ice troll youngling.", + "respawn": 10, + "combat": 74, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5474, + "name": "Ice troll male", + "examine": "A male troll wielding a large club.", + "respawn": 10, + "combat": 82, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5475, + "name": "Ice troll female", + "examine": "An ice troll with a bag of rocks.", + "respawn": 10, + "combat": 82, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5476, + "name": "Ice troll grunt", + "examine": "A large ice troll.", + "respawn": 10, + "combat": 102, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5477, + "name": "Bork Sigmundson", + "examine": "Physician to Neitiznot\u0027s militia.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5478, + "name": "King Gjuki Sorvott IV", + "examine": "An ill-tempered king.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5479, + "name": "HRH Hrafn", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5480, + "name": "Thorkel Silkbeard", + "examine": "Jatizso\u0027s Chancellor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5481, + "name": "Mord Gunnars", + "examine": "A humble ferryman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5482, + "name": "Mord Gunnars", + "examine": "A humble ferryman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5483, + "name": "Hring Hring", + "examine": "Harder than the rock he sells.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5484, + "name": "Flosi Dalksson", + "examine": "Jatizso\u0027s fishmonger.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5485, + "name": "Raum Urda-Stein", + "examine": "A guy that will sell you armour.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5486, + "name": "Skuli Myrka", + "examine": "Jatizso\u0027s armour merchant.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5487, + "name": "Keepa Kettilon", + "examine": "A rough-looking chef.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5488, + "name": "Magnus Gram", + "examine": "He can look after your money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5489, + "name": "Guard", + "examine": "A guard on insult duty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5490, + "name": "Guard", + "examine": "Stands around and insults stuff all day.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5491, + "name": "Guard", + "examine": "One of King Sorvott\u0027s militia.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5492, + "name": "Guard", + "examine": "One of King Sorvott\u0027s militia.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5493, + "name": "Freygerd", + "examine": "One of Jatizso\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5494, + "name": "Lensa", + "examine": "One of Jatizso\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5495, + "name": "Vanligga Gastfrihet", + "examine": "A happy, friendly landlady.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5496, + "name": "Sassilik", + "examine": "One of Jatizso\u0027s many citizens.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5497, + "name": "Miner", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5498, + "name": "Miner", + "examine": "A miner at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5499, + "name": "Eric", + "examine": "A bedraggled-looking tramp.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5500, + "name": "Gruva Patrull", + "examine": "Mina guards the mine entrance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5501, + "name": "Brendt", + "examine": "A dwarven trader from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5502, + "name": "Grundt", + "examine": "A dwarven trader from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5503, + "name": "Mawnis Burowgar", + "examine": "Neitiznot\u0027s Burgher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5504, + "name": "Mawnis Burowgar", + "examine": "Neitiznot\u0027s Burgher.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5505, + "name": "Fridleif Shieldson", + "examine": "Commander of Neitiznot\u0027s guards.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5506, + "name": "Thakkrad Sigmundson", + "examine": "A young master craftsman.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5507, + "name": "Maria Gunnars", + "examine": "Ferry-mistress.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5508, + "name": "Maria Gunnars", + "examine": "Ferry-mistress.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5509, + "name": "Jofridr Mordstatter", + "examine": "Mistress of the stores.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5510, + "name": "Morten Holdstrom", + "examine": "A yak handler\u0027s brother.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5511, + "name": "Gunnar Holdstrom", + "examine": "A yak handler.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5512, + "name": "Anne Isaakson", + "examine": "A farmhand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5513, + "name": "Lisse Isaakson", + "examine": "A farmhand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5514, + "name": "Honour guard", + "examine": "The Burgher\u0027s protectors.", + "respawn": 10, + "combat": 115, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5515, + "name": "Honour guard", + "examine": "The Burgher\u0027s protectors.", + "respawn": 10, + "combat": 115, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5516, + "name": "Honour guard", + "examine": "The Burgher\u0027s protectors.", + "respawn": 10, + "combat": 115, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5517, + "name": "Honour guard", + "examine": "One of your militia.", + "respawn": 10, + "combat": 115, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5518, + "name": "Kjedelig Uppsen", + "examine": "Guards the Burgher\u0027s room.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5519, + "name": "Trogen Konungarde", + "examine": "Guards the Burgher\u0027s room.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5520, + "name": "Slug Hemligssen", + "examine": "A man in a jester\u0027s costume.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5521, + "name": "Ice troll runt", + "examine": "An ice troll youngling.", + "respawn": 10, + "combat": 74, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5522, + "name": "Ice troll male", + "examine": "A male troll wielding a large club.", + "respawn": 10, + "combat": 82, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5523, + "name": "Ice troll female", + "examine": "An ice troll with a bag of rocks.", + "respawn": 10, + "combat": 82, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5524, + "name": "Ice troll grunt", + "examine": "A large ice troll.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5525, + "name": "Ice troll runt", + "examine": "An ice troll youngling.", + "respawn": 10, + "combat": 74, + "hitpoints": 60, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5526, + "name": "Ice troll male", + "examine": "A male troll wielding a large club.", + "respawn": 10, + "combat": 82, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5527, + "name": "Ice troll female", + "examine": "An ice troll with a bag of rocks.", + "respawn": 10, + "combat": 82, + "hitpoints": 70, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 91, + "defenceMelee": 91, + "defenceRange": 91, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5528, + "name": "Ice troll grunt", + "examine": "A large ice troll.", + "respawn": 10, + "combat": 100, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5529, + "name": "Yak", + "examine": "A hairy, smelly, grazing animal.", + "respawn": 10, + "combat": 22, + "hitpoints": 50, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5530, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5531, + "name": "Sorceress", + "examine": "Antisocial.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5532, + "name": "Apprentice", + "examine": "Come, old broomstick, you are needed.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5533, + "name": "Autumn Elemental", + "examine": "An autumn elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5534, + "name": "Autumn Elemental", + "examine": "An autumn elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5535, + "name": "Autumn Elemental", + "examine": "An autumn elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5536, + "name": "Autumn Elemental", + "examine": "An autumn elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5537, + "name": "Autumn Elemental", + "examine": "An autumn elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5538, + "name": "Autumn Elemental", + "examine": "An autumn elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5539, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5540, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5541, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5542, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5543, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5544, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5545, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5546, + "name": "Spring Elemental", + "examine": "A spring elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5547, + "name": "Summer Elemental", + "examine": "A summer elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5548, + "name": "Summer Elemental", + "examine": "A summer elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5549, + "name": "Summer Elemental", + "examine": "A summer elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5550, + "name": "Summer Elemental", + "examine": "A summer elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5551, + "name": "Summer Elemental", + "examine": "A summer elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5552, + "name": "Summer Elemental", + "examine": "A summer elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5553, + "name": "Winter Elemental", + "examine": "A winter elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5554, + "name": "Winter Elemental", + "examine": "A winter elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5555, + "name": "Winter Elemental", + "examine": "A winter elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5556, + "name": "Winter Elemental", + "examine": "A winter elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5557, + "name": "Winter Elemental", + "examine": "A winter elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5558, + "name": "Winter Elemental", + "examine": "A winter elemental.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5559, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5560, + "name": "Osman", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5561, + "name": "Osman", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5562, + "name": "Null", + "examine": "He looks a little shifty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5563, + "name": "Del-Monty", + "examine": "Loves living in an orchard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5564, + "name": "Bouncer", + "examine": "Big, mean, dead doggy.", + "respawn": 10, + "combat": 160, + "hitpoints": 120, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5565, + "name": "Bouncer", + "examine": "Big, mean, dead doggy.", + "respawn": 10, + "combat": 160, + "hitpoints": 120, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 156, + "defenceMelee": 156, + "defenceRange": 156, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5566, + "name": "General Khazard", + "examine": "He looks really nasty. Smells bad too.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5567, + "name": "Scout", + "examine": "An invisible scout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5568, + "name": "Scout", + "examine": "An invisible scout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5569, + "name": "Scout", + "examine": "An invisible scout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5570, + "name": "Scout", + "examine": "An invisible scout.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5571, + "name": "Sin Seer", + "examine": "She\u0027s honest about the things you aren\u0027t.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5572, + "name": "Ghost", + "examine": "A Shadow Realm guardian.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5573, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5574, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5575, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5576, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5577, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5578, + "name": "Effigy", + "examine": "He knows anything is possible.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5579, + "name": "Effigy", + "examine": "He knows anything is possible.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5580, + "name": "Bonafido", + "examine": "He knows everything has a reason.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5581, + "name": "Homunculus", + "examine": "Is it male or female?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5582, + "name": "Homunculus", + "examine": "It looks pretty unhappy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5583, + "name": "Homunculus", + "examine": "It looks pretty unhappy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5584, + "name": "Cage", + "examine": "You could hold anything in that.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5585, + "name": "\u0027Transmute\u0027 The Alchemist", + "examine": "He wants to create everything from nothing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5586, + "name": "\u0027Transmute\u0027 The Alchemist", + "examine": "He wants to create everything from nothing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5587, + "name": "\u0027Currency\u0027 The Alchemist", + "examine": "All he wants is gold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5588, + "name": "\u0027Currency\u0027 The Alchemist", + "examine": "All he wants is gold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5589, + "name": "\u0027Black-eye\u0027", + "examine": "Famous for his fights.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5590, + "name": "\u0027No fingers\u0027", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5591, + "name": "\u0027Gummy\u0027", + "examine": "He wishes he had teeth.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5592, + "name": "\u0027The Guns\u0027", + "examine": "He likes to weightlift a little too much.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5593, + "name": "Frogeel", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 103, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5594, + "name": "Spidine", + "examine": "It\u0027s a spider. No, a giant sardine...", + "respawn": 10, + "combat": 42, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5595, + "name": "Swordchick", + "examine": "Definitely not a chicken or a swordfish.", + "respawn": 10, + "combat": 46, + "hitpoints": 35, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 45, + "defenceMelee": 45, + "defenceRange": 45, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5596, + "name": "Jubster", + "examine": "A jubbly bird with claws.", + "respawn": 10, + "combat": 87, + "hitpoints": 60, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 78, + "defenceMelee": 78, + "defenceRange": 78, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5597, + "name": "Newtroost", + "examine": "Since when did newts have beaks?", + "respawn": 10, + "combat": 19, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5598, + "name": "Null", + "examine": "He knows anything is possible.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5599, + "name": "Null", + "examine": "It looks pretty unhappy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5600, + "name": "Null", + "examine": "It looks pretty unhappy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5601, + "name": "Null", + "examine": "He wants to create everything from nothing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5602, + "name": "Null", + "examine": "All he wants is gold.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5603, + "name": "Unicow", + "examine": "Half unicorn, half cow.", + "respawn": 10, + "combat": 25, + "hitpoints": 24, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 31, + "defenceMelee": 31, + "defenceRange": 31, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5604, + "name": "Elfinlocks", + "examine": "A player.", + "respawn": 10, + "combat": 93, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5605, + "name": "Clockwork cat", + "examine": "An amazing piece of Crafting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5606, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5607, + "name": "Clockwork cat", + "examine": "An amazing piece of Crafting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5608, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5609, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5610, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5611, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5612, + "name": "Rufus", + "examine": "There\u0027s something strange about him...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5613, + "name": "Mi-Gor", + "examine": "Little. Evil. Different.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5614, + "name": "Puffin", + "examine": "I\u0027d prefer it if it were a muffin...", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5615, + "name": "Puffin", + "examine": "It\u0027s rocking out.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5616, + "name": "Brother Tranquility", + "examine": "He\u0027s looked healthier.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5617, + "name": "Brother Tranquility", + "examine": "Much holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5618, + "name": "Brother Tranquility", + "examine": "Much holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5619, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5620, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5621, + "name": "Monk", + "examine": "Holier than thou.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5622, + "name": "Monk", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5623, + "name": "Zombie monk", + "examine": "Looked better.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5624, + "name": "Zombie monk", + "examine": "Looked better.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5625, + "name": "Zombie monk", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5626, + "name": "Zombie monk", + "examine": "Looked better.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5627, + "name": "Sorebones", + "examine": "Bedside manner is a little lacking, I think.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5628, + "name": "Sorebones", + "examine": "I hope his hands don\u0027t shake.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5629, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5630, + "name": "Zombie pirate", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5631, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5632, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5633, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5634, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5635, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5636, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5637, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5638, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5639, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5640, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5641, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5642, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5643, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5644, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5645, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5646, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5647, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5648, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5649, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5650, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5651, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5652, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5653, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5654, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5655, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5656, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5657, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5658, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5659, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5660, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5661, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5662, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5663, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5664, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5665, + "name": "Zombie pirate", + "examine": "Aaaarg, me hearty!", + "respawn": 10, + "combat": 57, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5666, + "name": "Barrelchest", + "examine": "It\u0027s trying to mash you flat! Less examine, more fight!", + "respawn": 10, + "combat": 190, + "hitpoints": 135, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 175, + "defenceMelee": 175, + "defenceRange": 175, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5667, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5668, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5669, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5670, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5671, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5672, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5673, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5674, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5675, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5676, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5677, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5678, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5679, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5680, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5681, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5682, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5683, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5684, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5685, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5686, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5687, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5688, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5689, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5690, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5691, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 35, + "hitpoints": 11, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 14, + "defenceMelee": 14, + "defenceRange": 14, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5692, + "name": "Undead Lumberjack", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5693, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5694, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5695, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5696, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5697, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5698, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5699, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 40, + "hitpoints": 12, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 15, + "defenceMelee": 15, + "defenceRange": 15, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5700, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5701, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5702, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5703, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5704, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5705, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5706, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5707, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 45, + "hitpoints": 13, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 16, + "defenceMelee": 16, + "defenceRange": 16, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5708, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5709, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5710, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5711, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5712, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5713, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5714, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5715, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 50, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5716, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5717, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5718, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5719, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5720, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5721, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5722, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5723, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 55, + "hitpoints": 15, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 19, + "defenceMelee": 19, + "defenceRange": 19, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5724, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5725, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5726, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5727, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5728, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5729, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5730, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5731, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 60, + "hitpoints": 16, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 20, + "defenceMelee": 20, + "defenceRange": 20, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5732, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5733, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5734, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5735, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5736, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5737, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5738, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5739, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 64, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5740, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5741, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5742, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5743, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5744, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5745, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5746, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5747, + "name": "Undead Lumberjack", + "examine": "He is one, but he\u0027s not alright.", + "respawn": 10, + "combat": 70, + "hitpoints": 18, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 23, + "defenceMelee": 23, + "defenceRange": 23, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5748, + "name": "Fishing spot", + "examine": "I can see fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5749, + "name": "Fishing spot", + "examine": "I can see fish swimming in the water.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5750, + "name": "Cave bug", + "examine": "A big, smelly cave dweller.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5751, + "name": "Molanisk", + "examine": "A strange mole-like being.", + "respawn": 10, + "combat": 51, + "hitpoints": 52, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 67, + "defenceMelee": 67, + "defenceRange": 67, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5752, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5753, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5754, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5755, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5756, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5757, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5758, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5759, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5760, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5761, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5762, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5763, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5764, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5765, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5766, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5767, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5768, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5769, + "name": "Cave goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5770, + "name": "Ur-zek", + "examine": "A respected member of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5771, + "name": "Ur-vass", + "examine": "A respected member of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5772, + "name": "Ur-taal", + "examine": "A respected member of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5773, + "name": "Ur-meg", + "examine": "A respected member of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5774, + "name": "Ur-lun", + "examine": "A respected member of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5775, + "name": "Ur-pel", + "examine": "A respected member of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5776, + "name": "Banker", + "examine": "Looks after cave goblin money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5777, + "name": "Banker", + "examine": "Looks after cave goblin money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5778, + "name": "Bartak", + "examine": "He works the city\u0027s metal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5779, + "name": "Turgall", + "examine": "He keeps the cave goblin magic working.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5780, + "name": "Reldak", + "examine": "Sells leather goods made of frog!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5781, + "name": "Miltog", + "examine": "Sells lamps to light your way in dark caves.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5782, + "name": "Mernik", + "examine": "She looks after the kiddies.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5783, + "name": "Cave goblin", + "examine": "One of the many citizens of Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5784, + "name": "Crate goblin", + "examine": "Taking a terribly important box from one place to another.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5785, + "name": "Cave goblin", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5786, + "name": "Goblin scribe", + "examine": "Good at shorthand.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5787, + "name": "Oldak", + "examine": "A scientist exploring the ways of magic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5788, + "name": "Gourmet", + "examine": "A connoisseur of exotic foods from outside Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5789, + "name": "Gourmet", + "examine": "A connoisseur of exotic foods from outside Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5790, + "name": "Gourmet", + "examine": "A connoisseur of exotic foods from outside Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5791, + "name": "Gourmet", + "examine": "A connoisseur of exotic foods from outside Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5792, + "name": "Turgok", + "examine": "Sells cave goblin fast food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5793, + "name": "Markog", + "examine": "Sells cave goblin fast food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5794, + "name": "Durgok", + "examine": "Sells cave goblin fast food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5795, + "name": "Tindar", + "examine": "Sells cave goblin fast food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5796, + "name": "Gundik", + "examine": "Sells cave goblin fast food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5797, + "name": "Zenkog", + "examine": "Sells cave goblin fast food.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5798, + "name": "Lurgon", + "examine": "Oversees the market.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5799, + "name": "Ur-tag", + "examine": "He\u0027s the head of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5800, + "name": "Guard", + "examine": "He keeps order in the city.", + "respawn": 10, + "combat": 26, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5801, + "name": "Guard", + "examine": "He keeps order in the city.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5802, + "name": "Null", + "examine": "A goblin adventurer.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5803, + "name": "Young \u0027un", + "examine": "A goblin baby.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5804, + "name": "Tyke", + "examine": "A goblin baby.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5805, + "name": "Nipper", + "examine": "A goblin baby.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5806, + "name": "Nipper", + "examine": "A goblin baby.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5807, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5808, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5809, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5810, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5811, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5812, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5813, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5814, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5815, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5816, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5817, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5818, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5819, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5820, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5821, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5822, + "name": "Cave goblin child", + "examine": "A goblin child.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5823, + "name": "Spit goblin", + "examine": "Don\u0027t spit, it\u0027s unhygienic.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5824, + "name": "Goblin fish", + "examine": "A bug-eyed little goblin fish. How cute.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5825, + "name": "Movario", + "examine": "He knows a thousand arcane secrets, every one of which would drive you mad.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5826, + "name": "Darve", + "examine": "He\u0027s here to guard the wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5827, + "name": "Moths", + "examine": "Annoying little flappy things.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5828, + "name": "Barlak", + "examine": "Sells bone goods.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5829, + "name": "Rabbit", + "examine": "Aww, how cute.", + "respawn": 10, + "combat": 2, + "hitpoints": 5, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 6, + "defenceMelee": 6, + "defenceRange": 6, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5830, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5831, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5832, + "name": "Null", + "examine": "The dwarf ambassador to Dorgesh-Kaan.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5833, + "name": "Rat Burgiss", + "examine": "A travelling trader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5834, + "name": "Surok Magis", + "examine": "A powerful wizard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5835, + "name": "Surok Magis", + "examine": "Leader of the Dagon\u0027hai Order.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5836, + "name": "Zaff", + "examine": "Sells superior staffs.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5837, + "name": "Anna Jones", + "examine": "An archeologist.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5838, + "name": "King Roald", + "examine": "Varrock\u0027s resident monarch. He looks strangely evil!", + "respawn": 10, + "combat": 47, + "hitpoints": 50, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 65, + "defenceMelee": 65, + "defenceRange": 65, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5839, + "name": "Mishkal\u0027un Dorn", + "examine": "A monk of the Dagon\u0027hai Order.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5840, + "name": "Dakh\u0027thoulan Aegis", + "examine": "A monk of the Dagon\u0027hai Order.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5841, + "name": "Sil\u0027as Dahcsnu", + "examine": "A monk of the Dagon\u0027hai Order.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5842, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5843, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5844, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5845, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5846, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5847, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5848, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5849, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5850, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5851, + "name": "Outlaw", + "examine": "A mean looking outlaw. Don\u0027t get too close!", + "respawn": 10, + "combat": 32, + "hitpoints": 20, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 26, + "defenceMelee": 26, + "defenceRange": 26, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5852, + "name": "Monkey", + "examine": "Perhaps our oldest relatives?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5853, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5854, + "name": "Bench", + "examine": "For sitting on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5855, + "name": "Goblin", + "examine": "An ugly green creature.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5856, + "name": "Goblin", + "examine": "An ugly goblin... bleurgh!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5857, + "name": "Zanik", + "examine": "The Chosen Commander?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5858, + "name": "Ur-tag", + "examine": "He\u0027s the head of the Dorgeshuun Council.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5859, + "name": "H.A.M. Archer", + "examine": "He looks pretty skilled with that bow.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5860, + "name": "H.A.M. Mage", + "examine": "He bristles with arcane power.", + "respawn": 10, + "combat": 30, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5861, + "name": "Zanik", + "examine": "She\u0027s addressing the crowd.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5862, + "name": "Sigmund and Zanik", + "examine": "Sigmund holding Zanik hostage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5863, + "name": "Ambassador Alvijar", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5864, + "name": "Builder", + "examine": "A worker on the train link.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5865, + "name": "Builder", + "examine": "A worker on the train link.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5866, + "name": "Builder", + "examine": "A worker on the train link.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5867, + "name": "Builder", + "examine": "A worker on the train link.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5868, + "name": "Tegdak", + "examine": "He\u0027s digging up cave goblin history!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5869, + "name": "Null", + "examine": "He\u0027s digging up cave goblin history!", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5870, + "name": "Zanik", + "examine": "A cave goblin adventurer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5871, + "name": "Sergeant Mossfists", + "examine": "An ugly green creature... but don\u0027t say that to his face!", + "respawn": 10, + "combat": 51, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5872, + "name": "Sergeant Slimetoes", + "examine": "An ugly green creature... but don\u0027t say that to his face!", + "respawn": 10, + "combat": 51, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5873, + "name": "Cave goblin", + "examine": "A goblin with big, bulging eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5874, + "name": "Cave goblin", + "examine": "A goblin with big, bulging eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5875, + "name": "Cave goblin", + "examine": "A goblin with big, bulging eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5876, + "name": "Cave goblin", + "examine": "A goblin with big, bulging eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5877, + "name": "Cave goblin", + "examine": "A goblin with big, bulging eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5878, + "name": "Cave goblin", + "examine": "A goblin with big, bulging eyes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5879, + "name": "Ticket goblin", + "examine": "He sells tickets to Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5880, + "name": "Dwarf", + "examine": "A dwarf from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5881, + "name": "Dwarf", + "examine": "A dwarf from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5882, + "name": "Dwarf", + "examine": "A dwarf from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5883, + "name": "Dwarf", + "examine": "A dwarf from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5884, + "name": "Dwarf", + "examine": "A dwarf from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5885, + "name": "Dwarf", + "examine": "A dwarf from Keldagrim.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5886, + "name": "Ticket dwarf", + "examine": "He sells tickets to Dorgesh-Kaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5887, + "name": "Null", + "examine": "The dwarf ambassador to Dorgesh-Kaan.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5888, + "name": "Null", + "examine": "A cave goblin adventurer.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5889, + "name": "Null", + "examine": "Goblin.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5890, + "name": "Null", + "examine": "Goblin.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5891, + "name": "Null", + "examine": "Goblin.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5892, + "name": "Null", + "examine": "Goblin.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5893, + "name": "Cyrisus", + "examine": "He\u0027s much better than when I first found him.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5894, + "name": "Cyrisus", + "examine": "I\u0027m glad he\u0027s finally on his feet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5895, + "name": "Cyrisus", + "examine": "He\u0027s a ranger - light and accurate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5896, + "name": "Cyrisus", + "examine": "He\u0027s a meleer - prepared to go face-to-face.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5897, + "name": "Cyrisus", + "examine": "He\u0027s a mage - mystical and calculating.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5898, + "name": "\u0027Bird\u0027s-Eye\u0027 Jack", + "examine": "A pirate-banker. You don\u0027t see one of those everyday!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5899, + "name": "Null", + "examine": "An aspiring adventurer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5900, + "name": "Null", + "examine": "An aspiring adventurer.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5901, + "name": "Null", + "examine": "A pirate-banker. You don\u0027t see one of those everyday!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5902, + "name": "The Inadequacy", + "examine": "Are you good enough to fight?", + "respawn": 10, + "combat": 343, + "hitpoints": 180, + "maxHit": 1, + "size": 5, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 234, + "defenceMelee": 234, + "defenceRange": 234, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5903, + "name": "The Everlasting", + "examine": "Can you endure long enough?", + "respawn": 10, + "combat": 223, + "hitpoints": 230, + "maxHit": 1, + "size": 3, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 299, + "defenceMelee": 299, + "defenceRange": 299, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5904, + "name": "The Untouchable", + "examine": "Can you bring yourself to hurt another?", + "respawn": 10, + "combat": 274, + "hitpoints": 90, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 117, + "defenceMelee": 117, + "defenceRange": 117, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5905, + "name": "The Illusive", + "examine": "What if you don\u0027t know how to win?", + "respawn": 10, + "combat": 108, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5906, + "name": "A Doubt", + "examine": "You can\u0027t escape your inadequacy!", + "respawn": 10, + "combat": 78, + "hitpoints": 59, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 76, + "defenceMelee": 76, + "defenceRange": 76, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5907, + "name": "The Illusive", + "examine": "What if you don\u0027t know how to win?", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5908, + "name": "Dying tree", + "examine": "Dead stone defending a dead throne room.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5909, + "name": "Barbarian", + "examine": "Don\u0027t let her arm-wrestle you for money.", + "respawn": 10, + "combat": 8, + "hitpoints": 14, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 18, + "defenceMelee": 18, + "defenceRange": 18, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5910, + "name": "Cook", + "examine": "A greasy, grimy gourmet.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5911, + "name": "Cook", + "examine": "He\u0027s suspiciously talented with a meat-cleaver.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5912, + "name": "Banker", + "examine": "He can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5913, + "name": "Banker", + "examine": "She can look after my money.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5914, + "name": "Iffie", + "examine": "An old woman busily knitting.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5915, + "name": "Elsie", + "examine": "Armed with a pair of needles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5916, + "name": "Cleaner", + "examine": "Does what too many people aren\u0027t interested in doing.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5917, + "name": "Stray dog", + "examine": "A mangy mutt.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5918, + "name": "Stray dog", + "examine": "Are those fleas all over it?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5919, + "name": "Guard", + "examine": "He tries to keep order around here. His bizarre uniform isn\u0027t helping.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5920, + "name": "Guard", + "examine": "He tries to keep order around here. His bizarre uniform isn\u0027t helping.", + "respawn": 10, + "combat": 21, + "hitpoints": 22, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 28, + "defenceMelee": 28, + "defenceRange": 28, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5921, + "name": "Trainee Guard", + "examine": "He\u0027s studying to be a guard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5922, + "name": "Captain", + "examine": "Trains the guards of the future.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5923, + "name": "Man", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5924, + "name": "Woman", + "examine": "One of Wildy\u0027s many citizens.", + "respawn": 10, + "combat": 2, + "hitpoints": 7, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 9, + "defenceMelee": 9, + "defenceRange": 9, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5925, + "name": "Benny", + "examine": "Newspaper seller.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5926, + "name": "Thief", + "examine": "Known for his light-fingered qualities.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 5927, + "name": "Thief", + "examine": "Known for his light-fingered qualities.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 5928, + "name": "Thief", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 5929, + "name": "Thief", + "examine": "Known for her light-fingered qualities.", + "respawn": 10, + "combat": 16, + "hitpoints": 17, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 22, + "defenceMelee": 22, + "defenceRange": 22, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": true, + "poisonous": false + }, + { + "id": 5930, + "name": "Art Critic Jacques", + "examine": "Jacques Netis - a slightly pompous art expert.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5931, + "name": "Historian Minas", + "examine": "Seth Minas - an aged expert in Wildy history.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5932, + "name": "Barnabus Hurma", + "examine": "An archaeologist hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5933, + "name": "Marius Giste", + "examine": "An archaeologist hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5934, + "name": "Caden Azro", + "examine": "An archaeologist hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5935, + "name": "Thias Leacke", + "examine": "An archaeologist hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5936, + "name": "Sinco Doar", + "examine": "An archaeologist hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5937, + "name": "Tinse Torpe", + "examine": "An archaeologist hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5938, + "name": "Information clerk", + "examine": "A lady with lots of information about the Museum.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5939, + "name": "Torrcs", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5940, + "name": "Marfet", + "examine": "Looks like he knows a thing or two.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5941, + "name": "Museum guard", + "examine": "This man guards the entrance to the Museum\u0027s cleaning area.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5942, + "name": "Museum guard", + "examine": "This man guards the workman\u0027s gate.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5943, + "name": "Museum guard", + "examine": "This man guards the workman\u0027s entrance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5944, + "name": "Teacher and pupil", + "examine": "A teacher and one of his pupils.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5945, + "name": "Schoolboy", + "examine": "Looks kind of familiar.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5946, + "name": "Schoolboy", + "examine": "Cheeky little chappy.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5947, + "name": "Teacher and pupil", + "examine": "A teacher and one of her pupils.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5948, + "name": "Teacher and pupil", + "examine": "A teacher and one of his pupils.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5949, + "name": "Schoolboy", + "examine": "A cheeky little chappy.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5950, + "name": "Teacher", + "examine": "A schoolteacher.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5951, + "name": "Schoolgirl", + "examine": "A schoolgirl.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5952, + "name": "Workman", + "examine": "Looks hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5953, + "name": "Workman", + "examine": "Looks hard at work.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5954, + "name": "Workman", + "examine": "Could there be something exciting in his wheelbarrow?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5955, + "name": "Workman", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5956, + "name": "Workman", + "examine": "A powerful knight of balance.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5957, + "name": "Workman", + "examine": "Looks intent on learning.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 2, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5958, + "name": "Dig Site workman", + "examine": "Wheelbarrow loader.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5959, + "name": "Barge workman", + "examine": "Working hard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5960, + "name": "Barge workman", + "examine": "Working hard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5961, + "name": "Barge workman", + "examine": "Working hard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5962, + "name": "Barge workman", + "examine": "Working hard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5963, + "name": "Barge foreman", + "examine": "Working hard.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5964, + "name": "Ed Wood", + "examine": "Likes the straight and narrow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5965, + "name": "Orlando Smith", + "examine": "Looks very young.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5966, + "name": "Natural historian", + "examine": "An aged expert in natural history.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5967, + "name": "Natural historian", + "examine": "An aged expert in natural history.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5968, + "name": "Natural historian", + "examine": "An aged expert in natural history.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5969, + "name": "Natural historian", + "examine": "An aged expert in natural history.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5970, + "name": "Natural historian", + "examine": "An aged expert in natural history.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5971, + "name": "Leech display", + "examine": "Bloodsuckers!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5972, + "name": "Sea slugs display", + "examine": "Slugs of the sea variety.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5973, + "name": "Snail display", + "examine": "A house on its back.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5974, + "name": "Monkey display", + "examine": "A cheeky little monkey.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5975, + "name": "Lizard display", + "examine": "A scaly little fellow.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5976, + "name": "Penguin display", + "examine": "Nice suit.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5977, + "name": "Camel display", + "examine": "He\u0027s got the hump.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5978, + "name": "Terrorbird display", + "examine": "Terrifying!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5979, + "name": "Dragon display", + "examine": "Looks like a fire-breather.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5980, + "name": "Wyvern display", + "examine": "Needs a good square meal.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 4, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5981, + "name": "Battle tortoise display", + "examine": "A huge beast.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 5, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5982, + "name": "Mole display", + "examine": "Loves making molehills.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5983, + "name": "Schoolgirl", + "examine": "Delightfully cheerful.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5984, + "name": "Schoolgirl", + "examine": "Cute pigtails.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5985, + "name": "Schoolgirl", + "examine": "Ahh, the youth of today.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5986, + "name": "Schoolgirl", + "examine": "What\u0027s in his wheelbarrow?", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5987, + "name": "Sylas", + "examine": "A gnarly old man.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5988, + "name": "Miazrqa", + "examine": "A slightly insane princess.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5989, + "name": "Grimgnash", + "examine": "An evil looking griffin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5990, + "name": "Rupert the Beard", + "examine": "A dwarf.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5991, + "name": "Drain pipe", + "examine": "A rusty drainpipe.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5992, + "name": "Rupert the Beard", + "examine": "A dwarf.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5993, + "name": "Experiment No.2", + "examine": "A very odd looking creature.", + "respawn": 10, + "combat": 109, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5994, + "name": "Mouse", + "examine": "A huge mouse. It looks hungry...", + "respawn": 10, + "combat": 95, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5995, + "name": "Mouse", + "examine": "A huge mouse. It looks hungry...", + "respawn": 10, + "combat": 95, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5996, + "name": "Glod", + "examine": "A cloud giant.", + "respawn": 10, + "combat": 138, + "hitpoints": 160, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 208, + "defenceMelee": 208, + "defenceRange": 208, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 5997, + "name": "Null", + "examine": "An evil looking griffin.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 3, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5998, + "name": "Null", + "examine": "A dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 5999, + "name": "Rupert the Beard", + "examine": "A dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6000, + "name": "Null", + "examine": "A dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6001, + "name": "Rupert the Beard", + "examine": "A dwarf.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6002, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6003, + "name": "Winkin", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6004, + "name": "Gnome", + "examine": "Like a mini man!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6005, + "name": "Cage", + "examine": "An empty cage.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6006, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6007, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6008, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6009, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6010, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6011, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6012, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6013, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6014, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6015, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6016, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6017, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6018, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6019, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6020, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6021, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6022, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6023, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6024, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6025, + "name": "Werewolf", + "examine": "Eek! A werewolf!", + "respawn": 10, + "combat": 88, + "hitpoints": 100, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6026, + "name": "Boris", + "examine": "A traveling man. Are those fleas?", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6027, + "name": "Imre", + "examine": "A well organised shop keeper.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6028, + "name": "Yuri", + "examine": "He\u0027s staring at the moon.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6029, + "name": "Joseph", + "examine": "He keeps calling me comrade.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6030, + "name": "Nikolai", + "examine": "There\u0027s a set of brows that mean business.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6031, + "name": "Eduard", + "examine": "This is one feral looking innkeeper.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6032, + "name": "Lev", + "examine": "A tough looking villager.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6033, + "name": "Georgy", + "examine": "A simple villager.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6034, + "name": "Svetlana", + "examine": "Seems a bit of a drama queen.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6035, + "name": "Irina", + "examine": "I bet she works out.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6036, + "name": "Alexis", + "examine": "She doesn\u0027t say much.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6037, + "name": "Milla", + "examine": "She looks like she can handle herself.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6038, + "name": "Galina", + "examine": "She seems light on her feet.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6039, + "name": "Sofiya", + "examine": "A wise villager.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6040, + "name": "Ksenia", + "examine": "Not exactly a warrior princess.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6041, + "name": "Yadviga", + "examine": "A well off villager.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6042, + "name": "Nikita", + "examine": "The woman.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6043, + "name": "Vera", + "examine": "She seems sure of herself.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6044, + "name": "Zoja", + "examine": "A healthy villager.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6045, + "name": "Liliya", + "examine": "She\u0027s looking for flowers.", + "respawn": 10, + "combat": 24, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6046, + "name": "Big Wolf", + "examine": "Must be the pack leader.", + "respawn": 10, + "combat": 73, + "hitpoints": 74, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 96, + "defenceMelee": 96, + "defenceRange": 96, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6047, + "name": "Wolf", + "examine": "A social killer.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6048, + "name": "Wolf", + "examine": "A social killer.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6049, + "name": "Wolf", + "examine": "A social killer.", + "respawn": 10, + "combat": 25, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6050, + "name": "Desert Wolf", + "examine": "A vicious desert wolf.", + "respawn": 10, + "combat": 27, + "hitpoints": 34, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 44, + "defenceMelee": 44, + "defenceRange": 44, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6051, + "name": "Desert Wolf", + "examine": "A vicious desert wolf.", + "respawn": 10, + "combat": 27, + "hitpoints": 34, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 44, + "defenceMelee": 44, + "defenceRange": 44, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6052, + "name": "Ice wolf", + "examine": "Not man\u0027s best friend.", + "respawn": 10, + "combat": 96, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6053, + "name": "Ninja impling", + "examine": "A very stealthy impling.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6054, + "name": "Dragon impling", + "examine": "An impling who likes the word \u0027dragon\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6055, + "name": "Baby impling", + "examine": "An impling baby. Aaah.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6056, + "name": "Young impling", + "examine": "A young impling. It\u0027s not fair!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6057, + "name": "Gourmet impling", + "examine": "An impling gourmet. Mmmm, tasty.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6058, + "name": "Earth impling", + "examine": "An earth impling. Rock on.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6059, + "name": "Essence impling", + "examine": "An impling who likes magic. Magic!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6060, + "name": "Eclectic impling", + "examine": "An impling with varied tastes.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6061, + "name": "Nature impling", + "examine": "A nature impling. Right on, maaan.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6062, + "name": "Magpie impling", + "examine": "Ooh, shiny things!", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6063, + "name": "Ninja impling", + "examine": "A very stealthy impling.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6064, + "name": "Dragon impling", + "examine": "An impling who likes the word \u0027dragon\u0027.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6065, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6066, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6067, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6068, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6069, + "name": "Null", + "examine": "Going round in circles.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6070, + "name": "Elnock Inquisitor", + "examine": "Insurance investigator extraordinaire.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6071, + "name": "Impling", + "examine": "An impling.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6072, + "name": "Fairy Aeryka", + "examine": "She tends the wheat.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6073, + "name": "Wandering impling", + "examine": "He looks a little lost.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6074, + "name": "Imp defender", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6075, + "name": "Null", + "examine": "This ghost looks quite rebellious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6076, + "name": "Null", + "examine": "This ghost looks quite rebellious.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6077, + "name": "Null", + "examine": "It\u0027s an NPC.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6078, + "name": "Cyclops", + "examine": "A one-eyed man eater.", + "respawn": 10, + "combat": 56, + "hitpoints": 80, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6079, + "name": "Cyclops", + "examine": "A one-eyed woman eater.", + "respawn": 10, + "combat": 76, + "hitpoints": 100, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6080, + "name": "Cyclops", + "examine": "A one-eyed man eater.", + "respawn": 10, + "combat": 56, + "hitpoints": 80, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 104, + "defenceMelee": 104, + "defenceRange": 104, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6081, + "name": "Cyclops", + "examine": "A one-eyed woman eater.", + "respawn": 10, + "combat": 76, + "hitpoints": 100, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 130, + "defenceMelee": 130, + "defenceRange": 130, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6082, + "name": "Null", + "examine": "The only captain not scared of dragons.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6083, + "name": "Null", + "examine": "The only captain not scared of dragons.", + "respawn": 10, + "combat": 1, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6084, + "name": "Captain Ned", + "examine": "An old sailor.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6085, + "name": "Cabin boy Jenkins", + "examine": "His job is to keep the ship in tip-top condition.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6086, + "name": "Cabin boy Jenkins", + "examine": "His job is to keep the ship in tip-top condition.", + "respawn": 10, + "combat": 0, + "hitpoints": 0, + "maxHit": 0, + "size": 1, + "attackSpeed": 0, + "attackAnim": 0, + "defenceAnim": 0, + "deathAnim": 0, + "attackBonus": 0, + "defenceMelee": 0, + "defenceRange": 0, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6087, + "name": "Elvarg", + "examine": "Roar! A dragon!", + "respawn": 10, + "combat": 83, + "hitpoints": 10, + "maxHit": 1, + "size": 4, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": false, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6088, + "name": "Zombie rat", + "examine": "Overgrown undead vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6089, + "name": "Zombie rat", + "examine": "Overgrown undead vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6090, + "name": "Zombie rat", + "examine": "Overgrown undead vermin.", + "respawn": 10, + "combat": 3, + "hitpoints": 10, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 13, + "defenceMelee": 13, + "defenceRange": 13, + "defenceMage": 0, + "attackable": true, + "aggressive": false, + "retreats": false, + "poisonous": false + }, + { + "id": 6091, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6092, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6093, + "name": "Skeleton", + "examine": "Could do with gaining a few pounds.", + "respawn": 10, + "combat": 22, + "hitpoints": 29, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 37, + "defenceMelee": 37, + "defenceRange": 37, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6094, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6095, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6096, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6097, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6098, + "name": "Ghost", + "examine": "Eeek! A ghost!", + "respawn": 10, + "combat": 19, + "hitpoints": 25, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 32, + "defenceMelee": 32, + "defenceRange": 32, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6099, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6100, + "name": "Zombie", + "examine": "The walking dead.", + "respawn": 10, + "combat": 24, + "hitpoints": 30, + "maxHit": 1, + "size": 1, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 39, + "defenceMelee": 39, + "defenceRange": 39, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + }, + { + "id": 6101, + "name": "Lesser demon", + "examine": "Lesser, but still pretty big.", + "respawn": 10, + "combat": 82, + "hitpoints": 79, + "maxHit": 1, + "size": 2, + "attackSpeed": 4000, + "attackAnim": 422, + "defenceAnim": 404, + "deathAnim": 2304, + "attackBonus": 102, + "defenceMelee": 102, + "defenceRange": 102, + "defenceMage": 0, + "attackable": true, + "aggressive": true, + "retreats": false, + "poisonous": false + } +] \ No newline at end of file diff --git a/2006Scape Server/data/cfg/npcDefinitions.xml b/2006Scape Server/data/cfg/npcDefinitions.xml deleted file mode 100644 index 379bd4fe..00000000 --- a/2006Scape Server/data/cfg/npcDefinitions.xml +++ /dev/null @@ -1,134240 +0,0 @@ - - - 0 - Hans - Servant of the Duke of Lumbridge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 4000 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 1834 - 836 - 9 - 9 - 9 - 0 - - - 2 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 1834 - 836 - 9 - 9 - 9 - 0 - - - 3 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 1834 - 836 - 9 - 9 - 9 - 0 - - - 4 - Woman - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 1834 - 836 - 9 - 9 - 9 - 0 - - - 5 - Woman - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 1834 - 836 - 9 - 9 - 9 - 0 - - - 6 - Woman - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 1834 - 836 - 9 - 9 - 9 - 0 - - - 7 - Farmer - He grows the crops in this area. - 7 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 412 - 1834 - 836 - 15 - 15 - 15 - 0 - - - 8 - Thief - Known for his light-fingered qualities. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 9 - Guard - It's an NPC. - 21 - 1 - true - false - false - false - 10 - 8 - 22 - 4000 - 412 - 403 - 836 - 28 - 28 - 28 - 0 - - - 10 - Schoolgirl - She looks happy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 11 - Tramp - A man down on his luck. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 12 - Barbarian - Not very civilised looking. - 7 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 451 - 1834 - 836 - 13 - 13 - 13 - 0 - - - 13 - Wizard - Slightly magical. - 9 - 1 - true - false - false - false - 10 - 1 - 14 - 4000 - 711 - 1834 - 836 - 18 - 18 - 18 - 0 - - - 14 - Druid - Loves nature. - 33 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 15 - Warrior woman - Not very fashion conscious. - 24 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 451 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 16 - Man - One of the citizens of Al-Kharid. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 17 - Schoolgirl - With a hop and a skip. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 18 - Al-Kharid warrior - Part of Al-Kharid's elite fighting force. - 9 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 451 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 19 - White Knight - Shiny armour! - 36 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 451 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 20 - Paladin - A holy warrior. - 62 - 1 - true - false - false - false - 10 - 1 - 57 - 4000 - 451 - 404 - 2304 - 74 - 74 - 74 - 0 - - - 21 - Hero - Heroic! - 69 - 1 - true - false - false - false - 10 - 1 - 83 - 4000 - 451 - 404 - 2304 - 107 - 107 - 107 - 0 - - - 22 - Forester - They love the forests. - 15 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 451 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 23 - Knight of Ardougne - A member of Ardougne's militia. - 46 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 451 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 24 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 25 - Woman - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 26 - Knight of Ardougne - To protect and serve the populace of Ardougne. - 46 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 451 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 27 - Archer - Good with arrows. - 37 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 426 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 28 - Zoo keeper - Enjoys locking up animals in small pens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 29 - Chuck - What restful music! - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 30 - Barman - What restful music! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 31 - Priest - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 32 - Guard - Keeps the peace... kind of. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 451 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 33 - Door man - What a boring job he has. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 34 - Watchman - Watches stuff. But who watches him? - 33 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 35 - Soldier - A soldier of the town of Yanille. - 28 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 451 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 36 - Wyson the gardener - The head gardener. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 37 - Sigbert the Adventurer - A bold knight famed for his travels. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 38 - Shipyard worker - Builds ships for a living. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 39 - Shipyard worker - Builds ships for a living. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 40 - Shark - Let's not go skinny dipping eh? - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 41 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 55 - 56 - 57 - 3 - 3 - 3 - 0 - - - 42 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 43 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 44 - Duck - He can look after my money. - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 7 - 8 - 9 - 3 - 3 - 3 - 0 - - - 45 - Duck - She can look after my money. - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 7 - 8 - 9 - 3 - 3 - 3 - 0 - - - 46 - Duckling - Quackers. - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 7 - 8 - 9 - 3 - 3 - 3 - 0 - - - 47 - Rat - A popular dwarven delicacy. - 1 - 1 - true - false - true - false - 10 - 1 - 2 - 4000 - 2705 - 2706 - 2707 - 2 - 2 - 2 - 0 - - - 48 - Oomlie bird - A jungle version of the chicken, but more vicious. - 46 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 55 - 56 - 57 - 52 - 52 - 52 - 0 - - - 49 - Hellhound - Hello, nice doggy... - 122 - 2 - true - true - false - false - 10 - 1 - 116 - 4000 - 158 - 159 - 161 - 150 - 150 - 150 - 0 - - - 50 - King Black Dragon - The biggest, meanest dragon around. - 276 - 5 - true - true - false - true - 60 - 45 - 240 - 4000 - 25 - 26 - 28 - 250 - 290 - 300 - 230 - - - 51 - Baby dragon - Young but still dangerous. - 48 - 2 - true - false - false - false - 10 - 15 - 50 - 4000 - 25 - 26 - 28 - 65 - 65 - 65 - 0 - - - 52 - Baby dragon - Young but still dangerous. - 48 - 2 - true - false - false - false - 10 - 15 - 50 - 4000 - 25 - 26 - 28 - 65 - 65 - 65 - 0 - - - 53 - Red dragon - A big powerful dragon. - 152 - 4 - true - true - false - false - 40 - 28 - 140 - 4000 - 91 - 89 - 92 - 182 - 182 - 182 - 0 - - - 54 - Black dragon - A fierce dragon with black scales! - 227 - 4 - true - true - false - false - 40 - 32 - 190 - 4000 - 91 - 89 - 92 - 247 - 247 - 247 - 0 - - - 55 - Blue dragon - A mother dragon. - 111 - 4 - true - false - false - false - 40 - 25 - 105 - 4000 - 91 - 89 - 92 - 136 - 136 - 136 - 0 - - - 56 - Dryad - A wood nymph. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 94 - 95 - 97 - 13 - 13 - 13 - 0 - - - 57 - Fairy - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 58 - Shadow spider - Is it a spider or is it a shadow? - 52 - 1 - true - true - false - false - 10 - 1 - 55 - 4000 - 143 - 144 - 146 - 71 - 71 - 71 - 0 - - - 59 - Giant spider - I think this spider has been genetically modified. - 2 - 1 - true - false - true - false - 10 - 1 - 5 - 4000 - 143 - 144 - 146 - 6 - 6 - 6 - 0 - - - 60 - Giant spider - I think this spider has been genetically modified. - 27 - 1 - true - true - true - false - 10 - 1 - 33 - 4000 - 143 - 144 - 146 - 42 - 42 - 42 - 0 - - - 61 - Spider - Incey wincey. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 280 - 279 - 273 - 2 - 2 - 2 - 0 - - - 62 - Jungle spider - A barely visible deadly jungle spider. - 44 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 143 - 147 - 146 - 65 - 65 - 65 - 0 - - - 63 - Deadly red spider - I think this spider has been genetically modified. - 34 - 1 - true - true - false - false - 10 - 4 - 35 - 4000 - 143 - 147 - 146 - 45 - 45 - 45 - 45 - - - 64 - Ice spider - I think this spider has been genetically modified. - 61 - 1 - true - true - false - false - 10 - 1 - 65 - 4000 - 143 - 147 - 146 - 84 - 84 - 84 - 0 - - - 65 - Leprechaun - It's an NPC. - 12 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 192 - 194 - 196 - 13 - 13 - 13 - 0 - - - 66 - Gnome - Like a mini man! - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 190 - 193 - 196 - 3 - 3 - 3 - 0 - - - 67 - Gnome - Like a mini man! - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 190 - 193 - 196 - 3 - 3 - 3 - 0 - - - 68 - Gnome - Like a mini man! - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 190 - 193 - 196 - 3 - 3 - 3 - 0 - - - 69 - Lizard man - A scaly reptilian creature. - 22 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 70 - Turael - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 71 - Orc - Ugly, smelly and full of bad attitude. - 20 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 451 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 72 - Troll - A hideously deformed creature. - 69 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 73 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 299 - 300 - 302 - 29 - 29 - 29 - 0 - - - 74 - Zombie - Dead woman walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 299 - 300 - 302 - 31 - 31 - 31 - 0 - - - 75 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 299 - 300 - 302 - 39 - 39 - 39 - 0 - - - 76 - Zombie - The walking dead. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 299 - 300 - 302 - 39 - 39 - 39 - 0 - - - 77 - Summoned Zombie - The living dead. - 13 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 299 - 300 - 302 - 13 - 13 - 13 - 0 - - - 78 - Giant bat - An annoying flappy thing. - 27 - 2 - true - true - false - false - 10 - 3 - 32 - 4000 - 30 - 31 - 36 - 41 - 41 - 41 - 41 - - - 79 - Death wing - A shadowy, barely visible flying entity from some evil place. - 83 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 30 - 31 - 36 - 13 - 13 - 13 - 0 - - - 80 - Camel - Oh, it's a camel. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 81 - Cow - Converts grass to beef. - 2 - 2 - true - false - false - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 10 - - - 82 - Lesser demon - Lesser, but still pretty big. - 82 - 2 - true - true - false - false - 10 - 8 - 79 - 4000 - 64 - 65 - 67 - 102 - 102 - 102 - 102 - - - 83 - Greater demon - Big, red, and incredibly evil. - 92 - 3 - true - false - false - false - 10 - 10 - 87 - 4000 - 64 - 65 - 67 - 13 - 13 - 13 - 0 - - - 84 - Black Demon - A big, scary, jet-black demon. - 172 - 3 - true - true - false - false - 10 - 1 - 157 - 4000 - 64 - 65 - 67 - 204 - 204 - 204 - 0 - - - 85 - Golem - A creature made from clay. - 55 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 153 - 154 - 156 - 13 - 13 - 13 - 0 - - - 86 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 87 - Giant rat - Overgrown vermin. - 6 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 138 - 139 - 141 - 13 - 13 - 13 - 0 - - - 88 - Dungeon rat - Overgrown vermin. - 12 - 2 - true - false - false - false - 10 - 1 - 12 - 4000 - 138 - 139 - 141 - 15 - 15 - 15 - 0 - - - 89 - Unicorn - Horse with a horn. - 15 - 2 - true - false - true - false - 10 - 1 - 19 - 4000 - 289 - 290 - 292 - 24 - 24 - 24 - 0 - - - 90 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 4 - 29 - 4000 - 260 - 261 - 263 - 37 - 37 - 37 - 37 - - - 91 - Skeleton - Could do with gaining a few pounds. - 21 - 1 - true - true - false - false - 10 - 4 - 24 - 4000 - 260 - 261 - 263 - 31 - 31 - 31 - 31 - - - 92 - Skeleton - Could do with gaining a few pounds. - 25 - 1 - true - true - false - false - 10 - 5 - 17 - 4000 - 260 - 261 - 263 - 22 - 22 - 22 - 22 - - - 93 - Skeleton - Could do with gaining a few pounds. - 45 - 1 - true - true - false - false - 10 - 6 - 59 - 4000 - 260 - 261 - 263 - 76 - 76 - 76 - 76 - - - 94 - Skeleton Mage - An undead worker of dark magic. - 16 - 1 - true - false - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 95 - Wolf - Not man's best friend. - 64 - 2 - true - true - false - false - 10 - 1 - 69 - 4000 - 75 - 76 - 78 - 89 - 89 - 89 - 0 - - - 96 - White wolf - A vicious mountain wolf. - 25 - 2 - true - true - false - false - 10 - 1 - 34 - 4000 - 75 - 76 - 78 - 44 - 44 - 44 - 0 - - - 97 - White wolf - A vicious mountain wolf. - 38 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 75 - 76 - 78 - 45 - 45 - 45 - 0 - - - 98 - Dog - Bow wow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 99 - Guard dog - He doesn't seem pleased to see me. - 44 - 1 - true - true - false - false - 10 - 1 - 49 - 4000 - 75 - 76 - 78 - 63 - 63 - 63 - 0 - - - 100 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 101 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 102 - Goblin - These goblins have grown strong. - 13 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 309 - 312 - 313 - 20 - 20 - 20 - 0 - - - 103 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 123 - 124 - 126 - 32 - 32 - 32 - 0 - - - 104 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 123 - 124 - 126 - 32 - 32 - 32 - 0 - - - 105 - Grizzly bear - Eek! A bear! - 21 - 2 - true - true - true - false - 10 - 1 - 27 - 4000 - 41 - 42 - 44 - 35 - 35 - 35 - 0 - - - 106 - Black bear - Eek! A bear! - 19 - 2 - true - false - false - false - 10 - 1 - 25 - 4000 - 41 - 42 - 44 - 32 - 32 - 32 - 0 - - - 107 - Scorpion - An extremely vicious scorpion. - 14 - 2 - true - true - false - false - 10 - 1 - 17 - 4000 - 246 - 247 - 248 - 22 - 22 - 22 - 0 - - - 108 - Poison Scorpion - It has a very vicious looking tail. - 20 - 2 - true - false - false - true - 10 - 1 - 23 - 4000 - 246 - 247 - 248 - 29 - 29 - 29 - 0 - - - 109 - Pit Scorpion - Tiny, annoying, stinging thing. - 28 - 1 - true - false - true - false - 10 - 1 - 32 - 4000 - 270 - 271 - 273 - 41 - 41 - 41 - 0 - - - 110 - Fire giant - A very large elemental adversary. - 86 - 2 - true - true - false - false - 10 - 1 - 111 - 4000 - 128 - 129 - 131 - 144 - 144 - 144 - 0 - - - 111 - Ice giant - He's got icicles in his beard. - 53 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 128 - 129 - 131 - 91 - 91 - 91 - 0 - - - 112 - Moss giant - His beard seems to have a life of its own. - 42 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 128 - 129 - 131 - 78 - 78 - 78 - 0 - - - 113 - Jogre - An aggressive humanoid. - 53 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 128 - 129 - 131 - 78 - 78 - 78 - 0 - - - 114 - Ogre - An angry Ogre in a funny hat. - 53 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 359 - 360 - 361 - 78 - 78 - 78 - 0 - - - 115 - Ogre - A large dim looking humanoid. - 53 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 359 - 360 - 361 - 78 - 78 - 78 - 0 - - - 116 - Cyclops - A one-eyed man eater. - 56 - 2 - true - true - false - false - 10 - 1 - 80 - 4000 - 128 - 129 - 131 - 104 - 104 - 104 - 0 - - - 117 - Hill Giant - A very large foe. - 28 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 128 - 129 - 131 - 45 - 45 - 45 - 0 - - - 118 - Dwarf - A short angry guy. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 99 - 100 - 102 - 20 - 20 - 20 - 0 - - - 119 - Chaos dwarf - A dwarf gone bad. - 48 - 1 - true - true - false - false - 10 - 1 - 61 - 4000 - 99 - 100 - 102 - 79 - 79 - 79 - 0 - - - 120 - Dwarf - A mountain dwelling short angry guy. - 20 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 99 - 100 - 102 - 13 - 13 - 13 - 0 - - - 121 - Dwarf - A short angry guy. - 9 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 99 - 100 - 102 - 13 - 13 - 13 - 0 - - - 122 - Hobgoblin - An ugly, smelly creature. - 28 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 164 - 165 - 167 - 37 - 37 - 37 - 0 - - - 123 - Hobgoblin - An ugly, smelly creature, with a spear. - 42 - 1 - true - true - false - false - 10 - 1 - 49 - 4000 - 163 - 165 - 167 - 63 - 63 - 63 - 0 - - - 124 - Earth warrior - A strange, inhuman, elemental warrior. - 51 - 1 - true - true - false - false - 10 - 1 - 54 - 4000 - 422 - 404 - 2304 - 70 - 70 - 70 - 0 - - - 125 - Ice warrior - A cold-hearted elemental warrior. - 57 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 126 - Otherworldly being - Is he invisible or just a set of floating clothing? - 64 - 1 - true - false - false - false - 10 - 1 - 66 - 4000 - 422 - 404 - 2304 - 85 - 85 - 85 - 0 - - - 127 - Magic axe - A magic axe with a mind of its own. - 42 - 1 - true - true - false - false - 10 - 1 - 44 - 4000 - 185 - 186 - 188 - 57 - 57 - 57 - 0 - - - 128 - Snake - A slithering serpent. - 5 - 1 - true - false - true - false - 10 - 1 - 6 - 4000 - 275 - 276 - 278 - 7 - 7 - 7 - 0 - - - 129 - Skavid - Servant race to the ogres. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 255 - 256 - 258 - 13 - 13 - 13 - 0 - - - 130 - Yeti - The abominable snowman. - 58 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 294 - 295 - 297 - 13 - 13 - 13 - 0 - - - 131 - Penguin - An inhabitant of icy regions. - 2 - 1 - true - false - false - false - 10 - 1 - 4 - 4000 - 237 - 234 - 236 - 5 - 5 - 5 - 0 - - - 132 - Monkey - Perhaps our oldest relatives? - 3 - 1 - true - false - true - false - 10 - 1 - 6 - 4000 - 220 - 221 - 223 - 7 - 7 - 7 - 0 - - - 133 - Black unicorn - A unicorn with a blackened heart. - 27 - 2 - true - true - true - false - 10 - 1 - 29 - 4000 - 289 - 290 - 292 - 37 - 37 - 37 - 0 - - - 134 - Poison spider - I think this spider has been genetically modified. - 64 - 1 - true - true - false - true - 10 - 1 - 65 - 4000 - 143 - 147 - 146 - 84 - 84 - 84 - 0 - - - 135 - Mammoth - A woolly, elephantine monster. - 41 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 136 - Terrorbird - These gnomes know how to get around! - 28 - 2 - true - false - false - false - 10 - 1 - 44 - 4000 - 322 - 323 - 325 - 57 - 57 - 57 - 0 - - - 137 - Mounted terrorbird gnome - Aaw baby chick! - 31 - 2 - true - false - false - false - 10 - 1 - 36 - 4000 - 327 - 329 - 331 - 46 - 46 - 46 - 0 - - - 138 - Mounted terrorbird gnome - A giant raptor. - 49 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 328 - 329 - 331 - 71 - 71 - 71 - 0 - - - 139 - Entrana firebird - A giant raptor. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 115 - 116 - 118 - 13 - 13 - 13 - 0 - - - 140 - Souless - A servant to Iban. - 18 - 1 - true - false - true - false - 10 - 1 - 24 - 4000 - 338 - 339 - 340 - 31 - 31 - 31 - 0 - - - 141 - Big Wolf - Must be the pack leader. - 73 - 2 - true - true - false - false - 10 - 1 - 74 - 4000 - 75 - 76 - 78 - 96 - 96 - 96 - 0 - - - 142 - Wolf - A social killer. - 25 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 75 - 76 - 78 - 13 - 13 - 13 - 0 - - - 143 - Jungle Wolf - A rare jungle wolf - specific to the Kharazi jungle. - 64 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 75 - 76 - 78 - 91 - 91 - 91 - 0 - - - 144 - King Scorpion - Wow! Scorpions shouldn't grow that big. - 32 - 2 - true - true - true - false - 10 - 1 - 31 - 4000 - 246 - 247 - 248 - 40 - 40 - 40 - 0 - - - 145 - NPC #145 - It's an NPC. - 57 - 1 - true - true - false - false - 0 - 0 - 59 - 10000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 146 - Gull - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 147 - Cormorant - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 148 - Albatross - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 149 - Gull - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 150 - Gull - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 151 - Fly trap - No flies on me. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 152 - Null - It's an NPC. - 85 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 153 - Butterfly - These look much better in the wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 154 - Butterfly - I love butterflies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 155 - Butterfly - It's a Blue Morpho Butterfly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 156 - Butterfly - It's a Tiger Swallowtail Butterfly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 157 - Butterfly - It's a Viceroy Butterfly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 158 - Shadow warrior - A fighter from the supernatural world. He's a shadow of his former self. - 48 - 1 - true - true - false - false - 10 - 1 - 67 - 4000 - 422 - 404 - 2304 - 87 - 87 - 87 - 0 - - - 159 - Gnome child - Small, even by gnome standards. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 191 - 194 - 196 - 2 - 2 - 2 - 0 - - - 160 - Gnome child - Small, even by gnome standards. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 191 - 194 - 196 - 2 - 2 - 2 - 0 - - - 161 - Gnome child - Small, even by gnome standards. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 191 - 194 - 196 - 2 - 2 - 2 - 0 - - - 162 - Gnome trainer - He can advise on training. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 163 - Gnome guard - A tree gnome guard. - 23 - 1 - true - false - false - false - 10 - 1 - 31 - 4000 - 192 - 193 - 196 - 40 - 40 - 40 - 0 - - - 164 - Gnome guard - A tree gnome guard. - 23 - 1 - true - false - false - false - 10 - 1 - 31 - 4000 - 192 - 193 - 196 - 40 - 40 - 40 - 0 - - - 165 - Gnome shop keeper - Sells gnomish things. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 166 - Gnome banker - Banks gnomish things. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 167 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 168 - Gnome woman - A female gnome. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 190 - 193 - 196 - 2 - 2 - 2 - 0 - - - 169 - Gnome woman - A female gnome. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 190 - 193 - 196 - 2 - 2 - 2 - 0 - - - 170 - Man - One of Wildy's many citizens, apparently trying to be an explorer. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 171 - Brimstail - Small but wise, he is. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 172 - Dark wizard - A practicer of dark arts. - 20 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 711 - 1834 - 836 - 31 - 31 - 31 - 0 - - - 173 - Invrigar the Necromancer - An evil user of Magic powers - 20 - 1 - true - false - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 174 - Dark wizard - He works evil magic. - 7 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 711 - 1834 - 836 - 15 - 15 - 15 - 0 - - - 175 - Mugger - He jumps out and attacks people. - 6 - 1 - true - true - true - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 176 - Witch - The hat's a dead give away. - 25 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 177 - Witch - The hat's a dead give away. - 25 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 178 - Black Knight - A dark-hearted knight. - 33 - 1 - true - true - false - false - 10 - 1 - 42 - 4000 - 422 - 404 - 2304 - 54 - 54 - 54 - 0 - - - 179 - Black Knight - A dark-hearted knight. - 33 - 1 - true - true - false - false - 10 - 1 - 42 - 4000 - 422 - 404 - 2304 - 54 - 54 - 54 - 0 - - - 180 - Highwayman - He holds up passers by. - 5 - 1 - true - true - true - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 181 - Chaos druid - A crazy, evil druid. - 13 - 1 - true - true - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 182 - Pirate - Yar! Shiver me timbers! - 23 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 183 - Pirate - Avast ye scurvy land lubbers! - 23 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 184 - Pirate - This one's had too much to drink! - 26 - 1 - true - true - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 185 - Pirate - A fine example of piracy's equal opportunities program. - 23 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 186 - Thug - Low on brains, high on aggression. - 10 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 187 - Rogue - Rogueish. - 15 - 1 - true - false - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 188 - Monk of Zamorak - An evil human cleric. - 22 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 189 - Monk of Zamorak - An evil human cleric. - 17 - 1 - true - false - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 190 - Monk of Zamorak - An evil human cleric. - 45 - 1 - true - false - false - false - 10 - 1 - 42 - 4000 - 422 - 404 - 2304 - 54 - 54 - 54 - 0 - - - 191 - Tribesman - A primitive warrior. - 32 - 1 - true - true - false - true - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 192 - Dark warrior - A warrior touched by chaos. - 8 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 193 - Chaos druid warrior - A crazy evil druid. - 37 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 194 - Necromancer - A crazy evil necromancer. - 26 - 1 - true - false - false - false - 10 - 1 - 41 - 4000 - 422 - 404 - 2304 - 53 - 53 - 53 - 0 - - - 195 - Bandit - A wilderness outlaw. - 22 - 1 - true - true - false - false - 10 - 1 - 27 - 4000 - 422 - 404 - 2304 - 35 - 35 - 35 - 0 - - - 196 - Guard Bandit - Bandit Camp guard. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 197 - Barbarian guard - Not very civilised looking. - 8 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 198 - Guildmaster - Master of the Champions' Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 199 - Gunthor the brave - It's an NPC. - 29 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 200 - Lord Daquarius - A mighty warrior! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 201 - Jailer - Guards prisoners for the black knights. - 47 - 1 - true - false - false - false - 10 - 1 - 47 - 4000 - 422 - 404 - 2304 - 61 - 61 - 61 - 0 - - - 202 - Black Heather - Has a fearsome scowl. - 34 - 1 - true - true - false - false - 10 - 1 - 38 - 4000 - 422 - 404 - 2304 - 49 - 49 - 49 - 0 - - - 203 - Donny the lad - Has a fearsome posture. - 34 - 1 - true - false - false - false - 10 - 1 - 37 - 4000 - 422 - 404 - 2304 - 48 - 48 - 48 - 0 - - - 204 - Speedy Keith - Nice hair. - 34 - 1 - true - true - false - false - 10 - 1 - 37 - 4000 - 422 - 404 - 2304 - 48 - 48 - 48 - 0 - - - 205 - Salarin the twisted - A crazy, evil druid. - 70 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 206 - Guard - A dwarven guard. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 99 - 100 - 102 - 20 - 20 - 20 - 0 - - - 207 - Lollk - A young Dwarf lad. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 208 - Captain Lawgof - The head honcho around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 209 - Nulodion - The Dwarven armoury engineer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 210 - Grail Maiden - She looks serene. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 211 - Sir Percival - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 212 - King Percival - A former Knight of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 213 - Merlin - A powerful Wizard of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 214 - Peasant - He looks unhappy... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 215 - Peasant - He looks happy... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 216 - High Priest - High Priest of Entrana. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 217 - Crone - A crone. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 218 - Galahad - A former Knight of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 219 - Fisherman - It's a fisherman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 220 - The Fisher King - He doesn't look very well... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 221 - Black Knight Titan - He looks mean and powerful. - 120 - 1 - true - false - false - false - 10 - 1 - 145 - 4000 - 128 - 129 - 131 - 188 - 188 - 188 - 0 - - - 222 - Monk - A holy man. - 5 - 1 - true - false - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 223 - Brother Kojo - A peaceful monk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 224 - Dungeon rat - A dirty rat. - 12 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 138 - 139 - 141 - 15 - 15 - 15 - 0 - - - 225 - Bonzo - The Fishing Contest judge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 226 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 227 - Morris - He checks the entrants to the Fishing Contest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 228 - Big Dave - I can see how he got his name. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 229 - Joshua - He loves to fish! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 230 - Grandpa Jack - He looks elderly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 231 - Forester - He likes to cut down trees. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 232 - Austri - He looks short and grumpy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 233 - Fishing spot - I can fish here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 234 - Fishing spot - I can fish here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 235 - Fishing spot - I can fish here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 236 - Fishing spot - I can fish here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 237 - Renegade Knight - He isn't very friendly. - 37 - 1 - true - true - false - false - 10 - 1 - 49 - 4000 - 422 - 404 - 2304 - 63 - 63 - 63 - 0 - - - 238 - Thrantax the Mighty - A terrifying spirit. - 92 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 239 - Sir Lancelot - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 240 - Sir Gawain - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 241 - Sir Kay - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 242 - Sir Bedivere - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 243 - Sir Tristram - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 244 - Sir Pelleas - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 245 - Sir Lucan - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 246 - Sir Palomedes - Specialist meat transporter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 247 - Sir Mordred - It's an NPC. - 39 - 1 - true - true - false - false - 10 - 1 - 39 - 4000 - 422 - 404 - 2304 - 50 - 50 - 50 - 0 - - - 248 - Morgan Le Faye - An evil and powerful sorceress. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 249 - Merlin - A powerful Wizard of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 250 - The Lady of the Lake - A powerful sorceress who guards Excalibur. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 251 - King Arthur - Legendary King of the Britons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 252 - Beggar - He looks very hungry... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 253 - Khazard Guard - He's guarding the door. - 23 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 254 - Khazard Guard - He's been guarding the tavern for a bit too long. - 23 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 255 - Khazard Guard - His armour indicates he's a Khazard Guard. - 23 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 256 - Khazard Guard - His armour indicates he's a Khazard Guard. - 23 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 257 - Khazard Guard - He takes the slaves to the arena. He rarely takes them back. - 25 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 258 - General Khazard - She looks particularly wealthy. - 112 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 259 - Khazard barman - A tough-looking Khazard barman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 260 - Kelvin - A slave fighter. He looks mistreated and weak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 261 - Joe - A slave fighter. He looks mistreated and weak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 262 - Fightslave - A slave fighter. He looks mistreated and weak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 263 - Hengrad - He looks mistreated but he hasn't given up. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 264 - Lady Servil - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 265 - Jeremy Servil - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 266 - Jeremy Servil - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 267 - Justin Servil - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 268 - Local - A scruffy-looking chap. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 269 - Bouncer - Postie Pete's worst nightmare. - 137 - 2 - true - true - false - false - 10 - 1 - 116 - 4000 - 158 - 159 - 161 - 150 - 150 - 150 - 0 - - - 270 - Khazard Ogre - Khazard's strongest ogre warrior. - 63 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 359 - 360 - 361 - 13 - 13 - 13 - 0 - - - 271 - Khazard Scorpion - A large, angry scorpion. - 44 - 3 - true - true - false - false - 10 - 1 - 29 - 4000 - 246 - 247 - 248 - 37 - 37 - 37 - 0 - - - 272 - Lucien - He walks with a slight limp. - 14 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 273 - Lucien - He walks with a slight limp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 274 - Guardian of Armadyl - A guard who has devoted their life to Armadyl. - 45 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 275 - Guardian of Armadyl - A guard who has devoted their life to Armadyl. - 43 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 276 - Winelda - A witch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 277 - Fire Warrior of Lesarkus - Intimidating! - 84 - 1 - true - false - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 278 - Cook - The head cook of Lumbridge castle. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 279 - Brother Omad - An old monk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 280 - Brother Cedric - An old drunk monk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 281 - Monk - An Ardougne Monk. - 3 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 422 - 404 - 2304 - 6 - 6 - 6 - 0 - - - 282 - Thief - A dastardly blanket thief. - 14 - 1 - true - false - false - false - 10 - 1 - 37 - 4000 - 422 - 404 - 2304 - 48 - 48 - 48 - 0 - - - 283 - Head Thief - The head of the treacherous blanket stealing gang. - 26 - 1 - true - true - false - false - 10 - 1 - 37 - 4000 - 422 - 404 - 2304 - 48 - 48 - 48 - 0 - - - 284 - Doric - A dwarf smith. Quite handy with a hammer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 285 - Veronica - She doesn't look too happy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 286 - Professor Oddenstein - A mad scientist if ever I saw one! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 287 - Ernest - A former chicken. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 288 - Chicken - A strange chicken. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 289 - Councillor Halgrive - An official of Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 290 - Doctor Orbon - A serious-looking doctor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 291 - Farmer Brumty - A farmer who's seen happier times. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 292 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 293 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 294 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 295 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 296 - General Bentnoze - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 297 - General Wartface - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 298 - Goblin - He tries to keep order around here. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 299 - Goblin - He tries to keep order around here. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 300 - Sedridor - Chief of research at Wizards' Tower. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 301 - Twig - Reminds me of playing pooh sticks. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 302 - Hadley - Could do with losing a bit of weight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 303 - Gerald - Looks suspiciously like a fisherman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 304 - Almera - Nice hair. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 305 - Hudon - Looks young. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 306 - Golrie - It's a tree gnome - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 307 - Hetty - An old motherly witch with a curious smile and a hooked nose. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 308 - Master fisher - The man in charge of the fishing guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 309 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 310 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 311 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 312 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 313 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 314 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 315 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 316 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 317 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 318 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 319 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 320 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 321 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 322 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 323 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 324 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 325 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 326 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 327 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 328 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 329 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 330 - Fishing spot - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 331 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 332 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 333 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 334 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 335 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 336 - Da Vinci - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 337 - Da Vinci - He has a colourful personality. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 338 - Chancy - He's ready for a bet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 339 - Chancy - He's ready for a bet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 340 - Hops - He's drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 341 - Hops - He's drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 342 - Guidor's wife - She looks rather concerned. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 343 - Guidor - He's not that ill. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 344 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 345 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 346 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 347 - Mourner - A mourner, or plague healer. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 348 - Mourner - A mourner, or plague healer. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 349 - Kilron - He looks shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 350 - Omart - A nervous looking fellow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 351 - Man - One of Wildy's many citizens. - 4 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 352 - Woman - One of Wildy's many citizens. - 3 - 1 - true - false - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 353 - Woman - One of Wildy's many citizens. - 4 - 1 - true - false - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 354 - Woman - One of Wildy's many citizens. - 3 - 1 - true - false - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 355 - Child - A child of West Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 356 - Child - A child of West Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 357 - Mourner - A mourner, or plague healer. - 18 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 358 - Priest - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 359 - Man - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 360 - Woman - One of Wildy's many citizens. - 4 - 1 - true - false - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 361 - Woman - One of Wildy's many citizens. - 12 - 1 - true - false - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 362 - Woman - One of Wildy's many citizens. - 3 - 1 - true - false - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 363 - Woman - One of Wildy's many citizens. - 14 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 364 - King Lathas - King Lathas of East Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 365 - Paladin - A military man. - 59 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 366 - Jerico - He looks friendly enough. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 367 - Chemist - Smells very chemically... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 368 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 369 - Mourner - A mourner, or plague healer. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 370 - Mourner - A mourner, or plague healer. - 13 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 371 - Mourner - It's an NPC. - 12 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 372 - Mourner - A mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 373 - Nurse Sarah - She's quite a looker! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 374 - Ogre - Ugly and bad-tempered. - 63 - 2 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 375 - Redbeard Frank - A pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 376 - Captain Tobias - An old sea dog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 377 - Seaman Lorris - A young sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 378 - Seaman Thresnor - A young sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 379 - Luthas - The owner of the banana plantation. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 380 - Customs officer - Inspects people's packages. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 381 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 382 - Dwarf - A dwarf who looks after the mining guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 383 - Stankers - He's in control of the coal trucks. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 384 - Barbarian guard - Not very civilised looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 385 - Kharid Scorpion - Looks vicious! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 386 - Kharid Scorpion - Looks vicious! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 387 - Kharid Scorpion - Looks vicious! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 388 - Seer - Could do with a shave... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 389 - Thormac - Nice hat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 390 - Big fish - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 391 - River troll - It's an NPC. - 14 - 1 - true - false - false - false - 10 - 1 - 28 - 4000 - 284 - 285 - 287 - 20 - 20 - 20 - 20 - - - 392 - River troll - It's an NPC. - 29 - 1 - true - false - false - false - 10 - 2 - 36 - 4000 - 284 - 285 - 287 - 30 - 30 - 30 - 30 - - - 393 - River troll - It's an NPC. - 49 - 1 - true - false - false - false - 10 - 3 - 57 - 4000 - 284 - 285 - 287 - 50 - 50 - 50 - 50 - - - 394 - River troll - It's an NPC. - 79 - 1 - true - false - false - false - 10 - 4 - 90 - 4000 - 284 - 285 - 287 - 80 - 80 - 80 - 80 - - - 395 - River troll - It's an NPC. - 120 - 1 - true - false - false - false - 10 - 6 - 130 - 4000 - 284 - 285 - 287 - 120 - 120 - 120 - 120 - - - 396 - River troll - It's an NPC. - 159 - 1 - true - false - false - false - 10 - 8 - 160 - 4000 - 284 - 285 - 287 - 160 - 160 - 160 - 160 - - - 397 - Cow - Beefy. - 2 - 2 - true - false - false - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 10 - - - 398 - Legends guard - A Legends Guild guard; he protects the entrance to the Legends Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 399 - Legends guard - A Legends Guild guard; he protects the entrance to the Legends Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 400 - Radimus Erkle - Radimus is the Grand Vizier of the Legends Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 401 - Jungle forester - He deals in exotic types of wood. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 402 - Jungle forester - She deals in exotic types of wood. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 403 - Fishing spot - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 404 - Fishing spot - Wow - the prettiest elf I have ever seen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 405 - Fishing spot - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 406 - Fishing spot - Either a very fremennikey pirate, or a very piratey fremennik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 407 - Strange plant - Parrot on shoulder... hook for a hand... yup, definitely a pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 408 - Strange plant - Parrot on shoulder... hook for a hand... yup, definitely a pirate. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 409 - Genie - He's come to offer a wish! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 410 - Mysterious Old Man - A very strange old man... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 411 - Swarm - Insects buzzing around. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 412 - Bat - An annoying flappy thing. - 6 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 30 - 31 - 36 - 10 - 10 - 10 - 10 - - - 413 - Rock Golem - It's an NPC. - 14 - 1 - true - false - false - false - 10 - 2 - 28 - 4000 - 153 - 154 - 156 - 20 - 20 - 20 - 20 - - - 414 - Rock Golem - It's an NPC. - 29 - 1 - true - false - false - false - 10 - 3 - 36 - 4000 - 153 - 154 - 156 - 30 - 30 - 30 - 30 - - - 415 - Rock Golem - It's an NPC. - 49 - 1 - true - false - false - false - 10 - 5 - 57 - 4000 - 153 - 154 - 156 - 50 - 50 - 50 - 50 - - - 416 - Rock Golem - It's an NPC. - 79 - 1 - true - false - false - false - 10 - 7 - 90 - 4000 - 153 - 154 - 156 - 80 - 80 - 80 - 80 - - - 417 - Rock Golem - It's an NPC. - 120 - 1 - true - false - false - false - 10 - 9 - 130 - 4000 - 153 - 154 - 156 - 120 - 120 - 120 - 120 - - - 418 - Rock Golem - What's he doing here? - 159 - 1 - true - false - false - false - 10 - 11 - 160 - 4000 - 153 - 154 - 156 - 160 - 160 - 160 - 160 - - - 419 - Zombie - It's an NPC. - 14 - 1 - true - false - false - false - 10 - 2 - 28 - 4000 - 299 - 300 - 302 - 20 - 20 - 20 - 20 - - - 420 - Zombie - What's he doing here? - 29 - 1 - true - false - false - false - 10 - 3 - 36 - 4000 - 299 - 300 - 302 - 30 - 30 - 30 - 30 - - - 421 - Zombie - The most senior goblin cleric. - 49 - 1 - true - false - false - false - 10 - 5 - 57 - 4000 - 299 - 300 - 302 - 50 - 50 - 50 - 50 - - - 422 - Zombie - It's an NPC. - 79 - 1 - true - false - false - false - 10 - 7 - 90 - 4000 - 299 - 300 - 302 - 80 - 80 - 80 - 80 - - - 423 - Zombie - Captain of the Dorgesh-Kaan City Guard. - 120 - 1 - true - false - false - false - 10 - 9 - 130 - 4000 - 299 - 300 - 302 - 120 - 120 - 120 - 120 - - - 424 - Zombie - Captain of the Dorgesh-Kaan City Guard. - 159 - 1 - true - false - false - false - 10 - 11 - 160 - 4000 - 299 - 300 - 302 - 160 - 160 - 160 - 160 - - - 425 - Shade - Captain of the Dorgesh-Kaan City Guard. - 14 - 1 - true - false - false - false - 10 - 2 - 28 - 4000 - 422 - 1834 - 836 - 20 - 20 - 20 - 20 - - - 426 - Shade - It's an NPC. - 29 - 1 - true - false - false - false - 10 - 3 - 36 - 4000 - 422 - 404 - 2304 - 30 - 30 - 30 - 30 - - - 427 - Shade - Captain of the Dorgesh-Kaan City Guard. - 49 - 1 - true - false - false - false - 10 - 5 - 57 - 4000 - 422 - 404 - 2304 - 50 - 50 - 50 - 50 - - - 428 - Shade - It looks like the flare has blinded him. - 79 - 1 - true - false - false - false - 10 - 7 - 90 - 4000 - 422 - 404 - 2304 - 80 - 80 - 80 - 80 - - - 429 - Shade - Captain of the Dorgesh-Kaan City Guard. - 120 - 1 - true - false - false - false - 10 - 9 - 130 - 4000 - 422 - 404 - 2304 - 120 - 120 - 120 - 120 - - - 430 - Shade - Captain of the Dorgesh-Kaan City Guard. - 159 - 1 - true - false - false - false - 10 - 11 - 160 - 4000 - 422 - 404 - 2304 - 160 - 160 - 160 - 160 - - - 431 - Null - A pirate that can navigate better than a bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 432 - Cyrisus - He's a ranger - light and accurate. - 126 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 433 - Cyrisus - He's a meleer - prepared to go face-to-face. - 126 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 434 - Cyrisus - He's a mage - mystical and calculating. - 126 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 435 - Fallen Man - I hope he's not dead! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 436 - Fallen Man - He's alive... just. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 437 - Cap'n Izzy No-Beard - Entrance clerk for the Brimhaven Agility Arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 438 - Tree spirit - Assistant teacher of the Dorgesh-Kaan nursery school. - 14 - 1 - true - false - false - false - 10 - 2 - 28 - 4000 - 94 - 95 - 97 - 20 - 20 - 20 - 20 - - - 439 - Tree spirit - It's an NPC. - 29 - 1 - true - false - false - false - 10 - 3 - 36 - 4000 - 94 - 95 - 97 - 30 - 30 - 30 - 30 - - - 440 - Tree spirit - Aww. - 49 - 1 - true - false - false - false - 10 - 5 - 57 - 4000 - 94 - 95 - 97 - 50 - 50 - 50 - 50 - - - 441 - Tree spirit - It's an NPC. - 79 - 1 - true - false - false - false - 10 - 7 - 90 - 4000 - 94 - 95 - 97 - 80 - 80 - 80 - 80 - - - 442 - Tree spirit - Aww. - 120 - 1 - true - false - false - false - 10 - 9 - 130 - 4000 - 94 - 95 - 97 - 120 - 120 - 120 - 120 - - - 443 - Tree spirit - It's an NPC. - 159 - 1 - true - false - false - false - 10 - 11 - 160 - 4000 - 94 - 95 - 97 - 160 - 160 - 160 - 160 - - - 444 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 445 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 446 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 447 - Jail guard - I wonder who he's guarding? - 26 - 1 - true - true - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 448 - Jail guard - I wonder who he's guarding? - 26 - 1 - true - true - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 449 - Jail guard - I wonder who he's guarding? - 26 - 1 - true - true - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 450 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 451 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 452 - Seth Groats - A large, well built farmer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 453 - Suit of armour - Aaargh, it's alive! - 19 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 454 - Sanfew - An old druid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 455 - Kaqemeex - A wise druid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 456 - Father Aereck - Looks a bit holy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 457 - Restless ghost - Eek! A ghost! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 458 - Father Urhney - Looks very holy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 459 - Skeleton - It rattles when it walks. - 13 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 260 - 261 - 263 - 23 - 23 - 23 - 0 - - - 460 - Wizard Frumscone - A Wizard of the Magic Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 461 - Magic Store owner - A Supplier of Magical items. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 462 - Wizard Distentor - Head of the Magic Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 463 - Murphy - Salty old sea dog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 464 - Murphy - Salty old sea dog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 465 - Murphy - Salty old sea dog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 466 - Murphy - Salty old sea dog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 467 - Shark - Let's not go skinny dipping eh? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 468 - Shark - Let's not go skinny dipping eh? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 469 - King Bolren - It's a gnome. He looks important. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 470 - Commander Montai - It's a tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 471 - Bolkoy - It's a tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 472 - Remsai - It's a tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 473 - Elkoy - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 474 - Elkoy - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 475 - Khazard trooper - It's one of General Khazard's warriors. - 19 - 1 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 476 - Khazard trooper - It's one of General Khazard's warriors. - 19 - 1 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 477 - Khazard warlord - He looks real nasty, smells bad too. - 112 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 478 - Khazard commander - It's one of General Khazard's commanders. - 48 - 1 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 479 - Gnome troop - It's a tree gnome trooper. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 422 - 404 - 2304 - 2 - 2 - 2 - 0 - - - 480 - Gnome troop - It's a tree gnome trooper. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 422 - 404 - 2304 - 2 - 2 - 2 - 0 - - - 481 - Tracker gnome 1 - It's a gnome who specialises in covert operations. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 482 - Tracker gnome 2 - It's a gnome who specialises in covert operations. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 483 - Tracker gnome 3 - It's a gnome who specialises in covert operations. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 484 - Local Gnome - It's a young tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 485 - Local Gnome - It's a young tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 486 - Kalron - He looks lost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 487 - Observatory assistant - I guess he wants to be more than just the muscle. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 488 - Observatory professor - A man, learned in the ways of the stars. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 489 - Goblin guard - He doesn't look like he'd trust his own mother. - 42 - 1 - true - false - false - false - 10 - 1 - 43 - 4000 - 310 - 312 - 313 - 55 - 55 - 55 - 0 - - - 490 - Observatory professor - If the mummy is at school, where are the kids? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 491 - Pissed Ghost - He doesn't look like he wants you here. - 90 - 1 - true - true - false - false - 10 - 15 - 90 - 4000 - 123 - 124 - 126 - 26 - 117 - 117 - 117 - - - 492 - Spirit of Scorpius - The essence of evil. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 493 - Grave scorpion - A vicious, little, stinging thing. - 12 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 494 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 495 - Banker - Good with money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 496 - Banker - A financial expert. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 497 - Banker - Looks after your money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 498 - Banker - Manages money momentarily. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 499 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 500 - Mosol Rei - A warrior from Shilo Village. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 501 - Spirit of Zadimus - An unquiet soul. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 502 - Undead one - A minion of Rashiliyia. - 68 - 1 - true - true - false - false - 10 - 1 - 47 - 4000 - 260 - 261 - 263 - 61 - 61 - 61 - 0 - - - 503 - Undead one - A minion of Rashiliyia. - 61 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 260 - 261 - 263 - 13 - 13 - 13 - 0 - - - 504 - Undead one - The animated dead; one of Rashiliyia's minions. - 68 - 1 - true - true - false - false - 10 - 1 - 47 - 4000 - 299 - 300 - 302 - 61 - 61 - 61 - 0 - - - 505 - Undead one - The animated dead; one of Rashiliyia's minions. - 73 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 299 - 300 - 302 - 76 - 76 - 76 - 0 - - - 506 - Rashiliyia - The animated spirit of Rashiliyia the Zombie Queen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 507 - Nazastarool - A giant zombie of huge strength and devastating power. - 91 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 299 - 300 - 302 - 13 - 13 - 13 - 0 - - - 508 - Nazastarool - A giant skeleton of huge strength and devastating power. - 68 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 260 - 261 - 263 - 13 - 13 - 13 - 0 - - - 509 - Nazastarool - A giant ghost of huge strength and devastating power. - 93 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 123 - 124 - 126 - 13 - 13 - 13 - 0 - - - 510 - Hajedy - A cart driver; it looks like he's quite experienced. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 511 - Vigroy - A cart driver; it looks like he's quite experienced. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 512 - Kaleb Paramaya - This is Kaleb Paramaya, a warm and friendly inn owner. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 513 - Yohnus - This is Yohnus, he runs the local smithery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 514 - Seravel - This is Seravel, he sells tickets for the 'Lady of the Waves'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 515 - Yanni Salika - Yanni Salika; he buys and sells antiques. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 516 - Obli - An intelligent-looking shop owner. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 517 - Fernahei - This is Fernahei; he owns the local fishing tackle shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 518 - Captain Shanks - He's the Captain of the 'Lady of the Waves'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 519 - Bob - An expert on axes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 520 - Shop keeper - Sells stuff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 521 - Shop assistant - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 522 - Shop keeper - Likes people spending money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 523 - Shop assistant - Likes helping sell stuff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 524 - Shop keeper - A product of a consumerist society. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 525 - Shop assistant - Likes you more, the more you spend. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 526 - Shop keeper - A product of a consumerist society. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 527 - Shop assistant - Likes you more, the more you spend. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 528 - Shop keeper - If he doesn't have it, he can't sell it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 529 - Shop assistant - She's here on work experience. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 530 - Shop keeper - Has an interesting assortment of items for sale. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 531 - Shop assistant - Works on commission. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 532 - Shop keeper - Clearly takes pride in his appearance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 533 - Shop assistant - Needs a haircut. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 534 - Fairy shop keeper - Sells stuff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 535 - Fairy shop assistant - Sells stuff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 536 - Valaine - A champion saleswoman! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 537 - Scavvo - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 538 - Peksa - Always up-to-date with the latest helmet fashions. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 539 - Silk trader - Very snappily dressed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 540 - Gem trader - Makes his money selling rocks. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 541 - Zeke - Sells superior scimitars. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 542 - Louie Legs - For the finest in armoured legware. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 543 - Karim - Kebabs are full of meaty goodness. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 544 - Ranael - She's an expert on armoured skirts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 545 - Dommik - If Crafting's your thing, he's your man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 546 - Zaff - Sells superior staffs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 547 - Baraek - Animal skins are a speciality. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 548 - Thessalia - Has an interesting assortment of clothes on offer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 549 - Horvik - The man with the armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 550 - Lowe - Sells arrows. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 551 - Shop keeper - Ironically, makes a living from swords. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 552 - Shop assistant - Helps the shopkeeper sell swords. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 553 - Aubury - Runes are his passion. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 554 - Fancy dress shop owner - For the interesting clothing items you just can't find elsewhere. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 555 - Shop keeper - Has a fine moustache. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 556 - Grum - Loves his gold. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 557 - Wydin - Likes his food to be kept fresh. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 558 - Gerrant - A Fishing expert. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 559 - Brian - An axe expert. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 560 - Jiminua - Goods for sale and trade. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 561 - Shop keeper - Could stand to lose a few pounds. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 562 - Candle maker - Has an odd smell about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 563 - Arhein - He looks fairly well-to-do. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 564 - Jukat - A being from a mysterious other realm. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 565 - Lunderwin - Smells strangely of cabbage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 566 - Irksol - Is he invisible or just floating clothing? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 567 - Fairy - Looks strange and mysterious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 568 - Zambo - Appears slightly drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 569 - Silver merchant - Looks fairly well fed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 570 - Gem merchant - Seems very well-off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 571 - Baker - So where are the butcher and the candlestick-maker? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 572 - Spice seller - Has a very exotic aroma about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 573 - Fur trader - Knows how to keep warm in the winter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 574 - Silk merchant - Seems very well-off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 575 - Hickton - A master fletcher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 576 - Harry - There's something fishy about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 577 - Cassie - Nice eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 578 - Frincos - Kind of funny-looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 579 - Drogo dwarf - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 580 - Flynn - The mace salesman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 581 - Wayne - An armourer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 582 - Dwarf - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 583 - Betty - She seems like a nice sort of person. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 584 - Herquin - Seems very well-off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 585 - Rommik - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 586 - Gaius - Ironically, makes a living from swords. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 587 - Jatix - He runs the Herblore shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 588 - Davon - An amulet trader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 589 - Zenesha - Sells top quality platemail armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 590 - Aemad - He runs the adventurers' shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 591 - Kortan - He helps to run the adventurers' shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 592 - Roachey - He runs the Fishing Guild shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 593 - Frenita - A recipe for success- in Cooking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 594 - Nurmof - He runs a pickaxe store. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 595 - Tea seller - He seems to sell tea. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 596 - Fat Tony - A pizza expert; in both making and eating. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 597 - Noterazzo - The lawless shopkeeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 598 - Hairdresser - Anyone fancy a trim? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 599 - Make-over mage - Master of the mystical make-over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 600 - Hudo - It's another jolly tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 601 - Rometti - It's a well-dressed tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 602 - Gulluck - He sells weapons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 603 - Heckel Funch - It's another jolly tree gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 604 - Thurgo - Dwarvish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 605 - Sir Vyvin - An elderly White Knight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 606 - Squire - Indentured servant of a Knight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 607 - Gunnjorn - He maintains this agility course. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 608 - Sir Amik Varze - Leader of the White Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 609 - Fortress Guard - A generic evil henchman. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 610 - Black Knight Captain - One of the Black Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 611 - Witch - The Black Knights' resident witch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 612 - Greldo - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 613 - Digsite workman - This person is working on the site. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 614 - Doug Deeping - This person is working on the site. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 615 - Student - A student busy studying the digsite. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 616 - Student - A student busy studying the digsite. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 617 - Student - A student busy studying the digsite. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 618 - Examiner - Upon examining the examiner you examine it is indeed an examiner! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 619 - Archaeological expert - An expert on archaeology. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 620 - Panning guide - A specialist in panning for gold. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 621 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 622 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 623 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 624 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 625 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 626 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 627 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 628 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 629 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 630 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 631 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 632 - Gnome baller - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 633 - Gnome winger - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 634 - Gnome winger - A professional gnome baller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 635 - Gnome ball referee - Keeps the game fair. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 636 - Cheerleader - Cheerleading is a real sport! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 637 - Juliet - A tearful damsel, maybe I can help her? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 638 - Apothecary - A dealer in potions. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 639 - Romeo - Rather dense and soppy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 640 - Father Lawrence - A religious man... And occasional drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 641 - Charlie the Tramp - Looks down on his luck. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 642 - Katrine - An empowered woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 643 - Weaponsmaster - Looks kind of obsessive... - 23 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 644 - Straven - Kind of funny looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 645 - Jonny the beard - It's an NPC. - 2 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 646 - Curator Haig Halen - Curator of the museum. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 647 - Null - Reldo the librarian. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 648 - King Roald - Varrock's resident monarch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 649 - Archer - She looks quite experienced. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 650 - Warrior - He looks big and dumb. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 651 - Illegal Monk - One of the illegal brethern of the monks. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 652 - Wizard - He looks kind of puny... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 653 - Fairy Queen - Looks otherworldy... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 654 - Shamus - A funny little man who lives in a tree. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 655 - Tree spirit - Guardian of the dramen tree. - 101 - 1 - true - false - false - false - 10000000 - 30 - 101 - 4000 - 5532 - 5533 - 5534 - 131 - 131 - 131 - 0 - - - 656 - Cave monk - Unsurprisingly monk like. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 657 - Monk of Entrana - Holy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 658 - Monk of Entrana - Holy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 659 - Party Pete - He likes to paaaarty! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 660 - Knight - You'd need a tin opener to get him out. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 661 - Megan - Pretty barmaid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 662 - Lucy - Pretty barmaid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 663 - Man - A well dressed nobleman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 664 - Dimintheis - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 665 - Boot - A short angry guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 666 - Caleb - A well dressed nobleman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 667 - Chronozon - Chronozon the blood demon. - 170 - 3 - true - true - false - false - 10 - 1 - 60 - 4000 - 64 - 65 - 67 - 78 - 78 - 78 - 0 - - - 668 - Johnathon - A well dressed nobleman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 669 - Hazelmere - An ancient looking gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 670 - King Narnode Shareen - An important looking gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 671 - Glough - A rough looking gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 672 - Anita - Glough's girlfriend. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 673 - Charlie - Poor guy, he looks frightened. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 674 - Foreman - The boss! - 23 - 1 - true - true - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 675 - Shipyard worker - Builds ships for a living. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 676 - Femi - A gnome trader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 677 - Black Demon - A big, scary, jet-black demon. - 172 - 3 - true - true - false - false - 10 - 1 - 157 - 4000 - 422 - 404 - 2304 - 204 - 204 - 204 - 0 - - - 678 - Guard - Keeps order in the ranging guild. - 37 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 679 - Ranging Guild Doorman - The keeper of the gates to the ranging guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 680 - Leatherworker - An expert leatherworker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 681 - Held vampyre juvinate - A juvinate vampyre, held in a powerful spell. - 59 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 682 - Armour salesman - Supplier of Rangers armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 683 - Bow and Arrow salesman - Supplier of Archery equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 684 - Tower Advisor - Tower keeper and competition judge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 685 - Tower Advisor - Tower keeper and competition judge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 686 - Tower Advisor - Tower keeper and competition judge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 687 - Tower Advisor - Tower keeper and competition judge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 688 - Tower Archer - Defender of the north tower. - 19 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 426 - 1834 - 836 - 39 - 39 - 39 - 0 - - - 689 - Tower Archer - Defender of the east tower. - 34 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 426 - 1834 - 2241 - 67 - 67 - 67 - 0 - - - 690 - Tower Archer - Defender of the south tower. - 49 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 691 - Tower Archer - Defender of the west tower. - 64 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 422 - 404 - 2304 - 117 - 117 - 117 - 0 - - - 692 - Tribal Weapon Salesman - Supplier of authentic throwing weapons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 693 - Competition Judge - Overseer of the Archery competition. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 694 - Ticket Merchant - Sells equipment in exchange for archery tickets. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 695 - Bailey - He smells of fish... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 696 - Caroline - She looks very worried about something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 697 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 698 - Holgart - A very good sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 699 - Holgart - A very good sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 700 - Holgart - A very good sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 701 - Kent - He looks very tired and hungry. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 702 - Fisherman - He smells of salty fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 703 - Fisherman - He smells of salty fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 704 - Fisherman - He smells of salty fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 705 - Melee combat tutor - Harlan, ready to teach you swordplay. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 706 - Wizard Mizgog - An old wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 707 - Wizard Grayzag - Master of imps. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 708 - Imp - A cheeky little imp. - 2 - 1 - true - false - true - false - 10 - 1 - 8 - 4000 - 169 - 170 - 172 - 10 - 10 - 10 - 0 - - - 709 - Imp - A vicious little imp. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 169 - 170 - 172 - 13 - 13 - 13 - 0 - - - 710 - Alrena - She looks concerned. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 711 - Bravek - The city warder of West Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 712 - Carla - She looks upset. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 713 - Clerk - A bureaucratic administrator. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 714 - Edmond - A local civilian. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 715 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 716 - Head mourner - In charge of people with silly outfits. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 717 - Mourner - A mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 718 - Mourner - A mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 719 - Mourner - A mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 720 - Recruiter - A member of the Ardougne Royal Army. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 721 - Ted Rehnison - The head of the Rehnison family. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 722 - Martha Rehnison - A fairly poor looking woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 723 - Billy Rehnison - The Rehnisons' eldest son. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 724 - Milli Rehnison - She doesn't seem very happy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 725 - Jethick - A cynical old man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 726 - Man - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 727 - Man - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 728 - Man - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 729 - Man - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 730 - Man - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 731 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 732 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 733 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 734 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 735 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 736 - Emily - Works in the Rising Sun. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 737 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 738 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 739 - Bartender - I could get a beer from him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 740 - Trufitus - A wise old witch doctor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 741 - Duke Horacio - Duke Horacio of Lumbridge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 742 - Elvarg - Roar! A dragon! - 83 - 4 - true - false - false - false - 30 - 20 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - - 743 - Ned - An old sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 744 - Klarense - A young sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 745 - Wormbrain - A badly-behaved goblin. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 746 - Oracle - A mystical fount of knowledge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 747 - Oziach - A strange little man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 748 - Null - His job is to keep the ship in tip-top condition. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 749 - Null - He looks a tad upset. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 750 - Null - He looks a tad upset. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 751 - Null - He looks a tad upset. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 752 - Null - He looks a tad upset. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 753 - Melzar the Mad - He looks totally insane! - 43 - 1 - true - true - false - false - 10 - 1 - 44 - 4000 - 422 - 404 - 2304 - 57 - 57 - 57 - 0 - - - 754 - Null - Ascending to rest. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 755 - Morgan - He looks scared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 756 - Dr Harlow - A retired vampire hunter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 757 - Count Draynor - Stop looking and run! - 34 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 758 - Fred the Farmer - A well fed looking farmer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 759 - Gertrude's cat - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 760 - Kitten - They look lost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 761 - Kitten - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 762 - Kitten - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 763 - Kitten - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 764 - Kitten - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 765 - Kitten - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 766 - Kitten - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 767 - Crate - Can I hear kittens? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 768 - Cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 769 - Cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 770 - Cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 771 - Cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 772 - Cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 773 - Cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 774 - Overgrown cat - A friendly, not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 775 - Overgrown cat - A friendly, not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 776 - Overgrown cat - A friendly, not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 777 - Overgrown cat - A friendly, not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 778 - Overgrown cat - A friendly, not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 779 - Overgrown cat - A friendly, not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 780 - Gertrude - A busy housewife. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 781 - Shilop - One of Gertrude's sons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 782 - Philop - One of Gertrude's sons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 783 - Wilough - One of Gertrude's sons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 784 - Kanel - One of Gertrude's sons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 785 - Civilian - A citizen of Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 786 - Civilian - A citizen of Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 787 - Civilian - A citizen of Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 788 - Garv - A diligent guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 789 - Grubor - A rough looking thief. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 790 - Trobert - A gnome who's supposed to be cleaning up a mess. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 791 - Seth - Slightly fishy smelling. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 792 - Grip - Looks like he's been in the wars... - 22 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 793 - Alfonse the waiter - Smartly dressed, and ready to deliver food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 794 - Charlie the cook - Distinctly cook-like. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 795 - Ice Queen - A cold hearted lady. - 111 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 796 - Achietties - Distinctly heroic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 797 - Helemos - A retired hero. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 798 - Velrak the explorer - He looks cold and hungry. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 799 - Pirate Guard - A morally ambiguous guard. - 19 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 800 - Fishing spot - It looks like there might be eels swimming in the lava. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 801 - Abbot Langley - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 802 - Brother Jered - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 803 - Monk - A holy man. - 5 - 1 - true - false - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 804 - Tanner - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 805 - Master Crafter - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 806 - Donovan the Family Handyman - He looks very tired... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 807 - Pierre - His job doesn't look very fun... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 808 - Hobbes - He looks kind of stuck up... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 809 - Louisa - She looks like she enjoys her job. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 810 - Mary - She looks very nervous... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 811 - Stanford - He looks like he spends a lot of time outdoors. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 812 - Guard - An officer of the Law. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 813 - Gossip - One of those people who love to gossip! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 814 - Anna - She's dressed in a red top and green trousers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 815 - Bob - He's dressed all in red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 816 - Carol - She's wearing a blue top and red trousers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 817 - David - He's dressed all in green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 818 - Elizabeth - She's wearing a green top and blue trousers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 819 - Frank - He's dressed all in blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 820 - Poison Salesman - He sure likes to sell stuff! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 821 - Sinclair Guard dog - Big, noisy, and scary looking! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 822 - Ana - She looks like a tourist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 823 - Ana - Stuffed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 824 - Female slave - She looks like she's been down here a long time. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 825 - Male slave - It looks like he's been here a long time. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 826 - Escaping slave - He's making a break for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 827 - Rowdy slave - It's an NPC. - 10 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 828 - Shanty Claws - A sea shanty-singing werewolf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 829 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 830 - Mercenary Captain - He looks a bit aggressive. - 47 - 1 - true - false - false - false - 10 - 1 - 68 - 4000 - 422 - 404 - 2304 - 88 - 88 - 88 - 0 - - - 831 - Captain Siad - He's in control of the whole mining camp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 832 - Al Shabim - He's the leader of the Bedabin tribe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 833 - Bedabin Nomad - A bedabin nomad, they live in the harshest extremes in the desert. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 834 - Bedabin Nomad Guard - A bedabin nomad guard - it looks like he's protecting an area. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 835 - Irena - A resident of Al-Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 836 - Shantay - He's in control of the Shantay pass. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 837 - Shantay Guard - He patrols the Shantay Pass. - 22 - 1 - true - false - false - false - 10 - 1 - 32 - 4000 - 412 - 404 - 2304 - 41 - 41 - 41 - 0 - - - 838 - Shantay Guard - He patrols the Shantay Pass. - 22 - 1 - false - false - false - false - 10 - 1 - 32 - 4000 - 412 - 404 - 2304 - 41 - 41 - 41 - 0 - - - 839 - Desert Wolf - A vicious desert wolf. - 27 - 2 - true - true - false - false - 10 - 1 - 34 - 4000 - 75 - 76 - 78 - 44 - 44 - 44 - 0 - - - 840 - Ugthanki - A vicious attacking camel. - 42 - 2 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 841 - Mine cart driver - He looks busy attending to his cart. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 842 - Rowdy Guard - He looks a bit aggressive and rowdy. - 43 - 1 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 843 - RPDT employee - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 844 - Wizard Cromperty - Inefficient looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 845 - Horacio - Could do with losing a few pounds. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 846 - Kangai Mau - A happening kind of guy! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 847 - Head chef - Despite his name, rarely actually cooks heads. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 848 - Blurberry - He seems to run the cocktail bar. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 849 - Barman - He serves cocktails. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 850 - Aluft Gianne snr. - The famous tree gnome chef. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 851 - Gnome Waiter - He can serve you gnome food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 852 - Ogre chieftain - Tough-looking. - 81 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 359 - 360 - 361 - 78 - 78 - 78 - 0 - - - 853 - Og - A senior member of the ogre community. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 854 - Grew - Very probably an ogre. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 855 - Toban - Ogre-ish. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 856 - Gorad - Big, dumb and ugly. - 68 - 2 - true - false - false - false - 10 - 1 - 81 - 4000 - 359 - 360 - 361 - 105 - 105 - 105 - 0 - - - 857 - Ogre guard - An ogre that guards. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 858 - Ogre guard - These ogres protect the city. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 859 - Ogre guard - An ogre that guards. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 860 - Ogre guard - An ogre that guards. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 861 - Ogre guard - An ogre that guards. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 862 - City guard - Tries to keep the peace. - 83 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 359 - 360 - 361 - 13 - 13 - 13 - 0 - - - 863 - Scared skavid - Frightened-looking. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 864 - Mad skavid - Looks mad. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 865 - Skavid - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 866 - Skavid - A skavid. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 867 - Skavid - A skavid. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 868 - Skavid - A skavid. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 869 - Skavid - A skavid. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 870 - Enclave guard - Big and ugly looking. - 83 - 2 - true - true - false - false - 10 - 1 - 80 - 4000 - 359 - 360 - 361 - 104 - 104 - 104 - 0 - - - 871 - Ogre shaman - It's an NPC. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 359 - 360 - 361 - 13 - 13 - 13 - 0 - - - 872 - Watchtower Wizard - The hat is a dead giveaway. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 873 - Ogre trader - Funnily enough, he doesn't actually buy or sell ogres. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 874 - Ogre merchant - Funnily enough, he doesn't actually buy or sell ogres. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 875 - Ogre trader - Funnily enough, he doesn't actually buy or sell ogres. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 876 - Ogre trader - Funnily enough, he doesn't actually buy or sell ogres. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 877 - Tower guard - Tries to keep the peace. - 28 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 878 - Colonel Radick - A military man. - 38 - 1 - true - false - false - false - 10 - 1 - 65 - 4000 - 422 - 404 - 2304 - 84 - 84 - 84 - 0 - - - 879 - Delrith - A freshly summoned demon. - 27 - 2 - true - false - false - false - 10 - 1 - 7 - 4000 - 64 - 65 - 67 - 9 - 9 - 9 - 0 - - - 880 - Weakened Delrith - The demon doesn't look so strong now. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 881 - Traiborn - An old wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 882 - Gypsy Aris - An old gypsy lady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 883 - Sir Prysin - One of the king's knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 884 - Captain Rovin - The head of the palace guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 885 - Ceril Carnillean - Head of the Carnillean household. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 886 - Claus the chef - The Carnillean family chef. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 887 - Guard - On special duty to protect the Carnilleans. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 888 - Philipe Carnillean - The newest member of the Carnillean family. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 889 - Henryeta Carnillean - Ceril Carnillean's wife. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 890 - Butler Jones - The Carnillean family butler. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 891 - Alomone - Leader of the Hazeel cult. - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 892 - Hazeel - An evil being raised from the dead. - 296 - 1 - false - false - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 893 - Clivet - A member of the Hazeel cult. - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 894 - Hazeel Cultist - A member of the Hazeel cult. - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 895 - Boy - A sad-looking child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 896 - Nora T. Hagg - Distinctly witch-like. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 897 - Witch's experiment - Looks unnatural. - 19 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 255 - 256 - 258 - 13 - 13 - 13 - 0 - - - 898 - Witch's experiment (second form) - Looks unnatural. - 30 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 143 - 147 - 146 - 13 - 13 - 13 - 0 - - - 899 - Witch's experiment (third form) - Looks unnatural. - 42 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 41 - 42 - 44 - 13 - 13 - 13 - 0 - - - 900 - Witch's experiment (fourth form) - Looks unnatural. - 53 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 75 - 76 - 78 - 13 - 13 - 13 - 0 - - - 901 - Mouse - Deceptively mouse-shaped. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 902 - Gundai - He must get lonely out here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 903 - Lundail - He sells rune stones. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 904 - Chamber guardian - He hasn't seen much sun lately. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 905 - Kolodion - He runs the mage arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 906 - Kolodion - He runs the mage arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 907 - Kolodion - He runs the mage arena. - 10 - 1 - true - false - false - false - 10 - 20 - 3 - 4000 - 811 - 1834 - 836 - 20 - 0 - 0 - 40 - - - 908 - Kolodion - He's a shape-shifter. - 40 - 1 - true - false - false - false - 10 - 20 - 66 - 4000 - 132 - 129 - 131 - 40 - 0 - 0 - 80 - - - 909 - Kolodion - He's a shape-shifter. - 60 - 3 - true - false - false - false - 10 - 20 - 79 - 4000 - 143 - 144 - 146 - 80 - 0 - 0 - 160 - - - 910 - Kolodion - He's a shape-shifter. - 80 - 1 - true - false - false - false - 10 - 20 - 79 - 4000 - 811 - 1834 - 836 - 100 - 0 - 0 - 200 - - - 911 - Kolodion - He's a shape-shifter. - 112 - 3 - true - false - false - false - 10 - 20 - 117 - 4000 - 64 - 65 - 67 - 150 - 0 - 0 - 250 - - - 912 - Battle mage - He kills in the name of Zamorak. - 54 - 1 - true - true - false - false - 10 - 20 - 127 - 4000 - 811 - 1834 - 836 - 165 - 165 - 165 - 0 - - - 913 - Battle mage - He kills in the name of Saradomin. - 54 - 1 - true - true - false - false - 10 - 20 - 127 - 4000 - 811 - 404 - 2304 - 165 - 165 - 165 - 0 - - - 914 - Battle mage - He kills in the name of Guthix. - 54 - 1 - true - true - false - false - 10 - 20 - 127 - 4000 - 198 - 193 - 196 - 165 - 165 - 165 - 0 - - - 915 - Leela - She comes from Al-Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 916 - Joe - Lady Keli's head guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 917 - Jail guard - I wonder who he's guarding? - 26 - 1 - true - true - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 918 - Ned - An old sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 919 - Lady Keli - An infamous bandit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 920 - Prince Ali - A young prince. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 921 - Prince Ali - Now that's an effective disguise! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 922 - Aggie - A witch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 923 - Hassan - The chancellor to the Emir. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 924 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 925 - Border Guard - Guards the border. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 926 - Border Guard - Guards the border. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 927 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 928 - Gujuo - A dark, charismatic jungle native. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 929 - Ungadulu - The Kharazi tribe's elusive shaman. - 70 - 1 - true - false - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 930 - Ungadulu - The Kharazi tribe's elusive shaman; something doesn't look quite right with him. - 169 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 931 - Jungle savage - An aggressive native of the Kharazi Jungle. - 90 - 1 - true - true - true - false - 10 - 1 - 90 - 4000 - 422 - 404 - 2304 - 117 - 117 - 117 - 0 - - - 932 - Fionella - She sells general items at the Legends Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 933 - Siegfried Erkle - An eccentric shopkeeper, related to the Grand Vizier of the Legends Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 934 - Nezikchened - An ancient, powerful demon of the underworld. - 187 - 3 - true - true - false - false - 10 - 1 - 150 - 4000 - 64 - 65 - 67 - 195 - 195 - 195 - 0 - - - 935 - Viyeldi - The spirit of a long-dead wizard. - 79 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 936 - San Tojalon - The spirit of a long-dead warrior. - 106 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 265 - 266 - 268 - 13 - 13 - 13 - 0 - - - 937 - Irvig Senay - The spirit of a long-dead warrior. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 265 - 266 - 268 - 13 - 13 - 13 - 0 - - - 938 - Ranalph Devere - The spirit of a long-dead warrior. - 92 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 265 - 266 - 268 - 13 - 13 - 13 - 0 - - - 939 - Boulder - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 940 - Echned Zekin - A spirit of the underworld. - 187 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 123 - 124 - 126 - 13 - 13 - 13 - 0 - - - 941 - Green dragon - Must be related to Elvarg. - 79 - 4 - true - true - false - false - 30 - 25 - 75 - 4000 - 91 - 89 - 92 - 97 - 97 - 97 - 0 - - - 942 - Master Chef - An expert on all things culinary. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 943 - Survival Expert - Very much an outdoors type. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 944 - Combat Instructor - An expert on all forms of combat. - 146 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 945 - Wildy Guide - Your introduction to the world of Wildy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 946 - Magic Instructor - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 947 - Financial Advisor - An official representative from the First National Bank of Wildy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 948 - Mining Instructor - An expert on Mining-related skills. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 949 - Quest Guide - Your introduction to the world of Wildy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 950 - Giant rat - It's an NPC. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 951 - Chicken - It's an NPC. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 55 - 56 - 57 - 13 - 13 - 13 - 0 - - - 952 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 953 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 954 - Brother Brace - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 955 - Cow - A cow by any other name would smell as sweet. - 2 - 2 - true - false - false - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 0 - - - 956 - Drunken Dwarf - He's had a fair bit to drink... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 957 - Mubariz - Tough-looking combat type. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 958 - Fadli - Looks kinda bored. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 959 - A'abla - Trained to deal with all sorts of injuries. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 960 - Sabreen - Heals people. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 961 - Surgeon General Tafani - This doctor really knows her stuff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 962 - Jaraah - Has the messy job of putting players back together again. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 963 - Zahwa - Battle-scarred. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 964 - Ima - A citizen of Al Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 965 - Sabeil - A citizen of Al Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 966 - Jadid - A citizen of Al Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 967 - Dalal - A citizen of Al Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 968 - Afrah - A citizen of Al Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 969 - Jeed - A citizen of Al Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 970 - Diango - He smells funny. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 971 - Chadwell - Shopkeeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 972 - Koftik - The cave guide. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 973 - Koftik - The cave guide. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 974 - Koftik - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 975 - Koftik - The cave guide. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 976 - Koftik - The cave guide. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 977 - Blessed spider - It's one of Iban's pets. - 39 - 1 - true - false - false - false - 10 - 1 - 32 - 4000 - 143 - 147 - 146 - 41 - 41 - 41 - 0 - - - 978 - Blessed giant rat - It's one of Iban's pet vermin. - 9 - 2 - true - false - false - false - 10 - 1 - 30 - 4000 - 138 - 139 - 141 - 39 - 39 - 0 - - - 979 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 980 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 981 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 982 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 983 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 984 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 985 - Slave - A wretched slave of Iban. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 986 - Boulder - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 987 - Unicorn - The animal is caged here. - 15 - 2 - false - false - true - false - 10 - 1 - 19 - 4000 - 289 - 290 - 292 - 24 - 24 - 24 - 0 - - - 988 - Sir Jerro - A mighty-looking warrior. - 62 - 1 - true - false - false - false - 10 - 1 - 58 - 4000 - 422 - 404 - 2304 - 75 - 75 - 75 - 0 - - - 989 - Sir Carl - A mighty-looking warrior. - 62 - 1 - true - false - false - false - 10 - 1 - 57 - 4000 - 422 - 404 - 2304 - 74 - 74 - 74 - 0 - - - 990 - Sir Harry - A mighty-looking warrior. - 62 - 1 - true - false - false - false - 10 - 1 - 57 - 4000 - 422 - 404 - 2304 - 74 - 74 - 74 - 0 - - - 991 - Half-soulless - A creature empty of emotion. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 992 - Kardia - A dark and evil crone. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 993 - Witch's cat - Curiosity is yet to kill this one... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 994 - Niloof - A strong and hardy dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 995 - Klank - A dwarven maker of gauntlets. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 996 - Kamen - This dwarf looks intoxicated. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 997 - Kalrag - A giant spider. - 89 - 3 - true - true - false - false - 10 - 1 - 79 - 4000 - 143 - 147 - 146 - 102 - 102 - 102 - 0 - - - 998 - Othainian - One of the guardians of Iban. - 91 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 64 - 65 - 67 - 13 - 13 - 13 - 0 - - - 999 - Doomion - One of the guardians of Iban. - 91 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 64 - 65 - 67 - 13 - 13 - 13 - 0 - - - 1000 - Holthion - One of the guardians of Iban. - 91 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 64 - 65 - 67 - 13 - 13 - 13 - 0 - - - 1001 - Dark mage - A user of dark magic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1002 - Disciple of Iban - A dark magic user. - 13 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1003 - Lord Iban - The great and dreadful Lord Iban - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1004 - Spider - Incey wincey. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 422 - 404 - 2304 - 2 - 2 - 2 - 0 - - - 1005 - Giant bat - Annoying, flappy thing. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1006 - Sea slug - A rather nasty looking crustacean. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1007 - Zamorak wizard - A servant of Zamorak. - 65 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 1008 - Hamid - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1009 - Poison spider - A nasty, poisonous arachnid. - 31 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 143 - 147 - 146 - 13 - 13 - 13 - 0 - - - 1010 - Rantz - A large dim looking humanoid. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1011 - Fycie - This must be Rantz's daughter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1012 - Bugs - This must be Rantz's son. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1013 - Swamp toad - A green skinned croaker, loves the swamp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1014 - Bloated Toad - A green skinned croaker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1015 - Chompy bird - Useful for hitting rocks. - 6 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1011 - 1012 - 1009 - 13 - 13 - 13 - 0 - - - 1016 - Chompy bird - A once boisterous bird, closer to being an ogre delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1017 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 5387 - 5388 - 5389 - 3 - 3 - 3 - 0 - - - 1018 - Rooster - He rules the, er, roost. - 3 - 1 - true - false - true - false - 10 - 1 - 7 - 4000 - 55 - 56 - 57 - 9 - 9 - 9 - 0 - - - 1019 - Fire elemental - A fire elemental. - 35 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 1029 - 1030 - 1031 - 39 - 39 - 39 - 0 - - - 1020 - Earth elemental - An earth elemental. - 35 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 1035 - 1036 - 1037 - 45 - 45 - 45 - 0 - - - 1021 - Air elemental - An air elemental. - 34 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 1040 - 1042 - 1041 - 39 - 39 - 39 - 0 - - - 1022 - Water elemental - A water elemental. - 34 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 1044 - 1046 - 1048 - 39 - 39 - 39 - 0 - - - 1023 - Vampire - Where did that come from? - 72 - 1 - false - true - false - false - 10 - 1 - 56 - 4000 - 1035 - 1036 - 1037 - 72 - 72 - 72 - 0 - - - 1024 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1025 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1026 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1027 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1028 - Baby impling - An impling baby. Aaah... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1029 - Young impling - A young impling. It's not fair! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1030 - Gourmet impling - An impling gourmet. Mmmm, tasty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1031 - Earth impling - An earth impling. Rock on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1032 - Essence impling - An impling who likes magic. Magic! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1033 - Eclectic impling - An impling with varied tastes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1034 - Nature impling - A nature impling. Right on, maaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1035 - Magpie impling - Ooh, shiny things! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1036 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1037 - Prissy Scilla - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1038 - Rufus - There's something strange about him... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1039 - Barker - Has a distinguished air about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1040 - Fidelio - A lycanthrope shopkeeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1041 - Sbott - Has a faint smell of chemicals about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1042 - Roavar - Seems a jolly chap. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1043 - Will o' the wisp - Mysterious swamp lights... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1044 - Monk of Zamorak - An evil human cleric. - 22 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 1045 - Monk of Zamorak - It's an NPC. - 17 - 1 - true - false - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 1046 - Monk of Zamorak - An evil human cleric. - 30 - 1 - true - false - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 1047 - Temple guardian - It's an NPC. - 30 - 2 - true - false - false - false - 10 - 1 - 30 - 4000 - 18 - 19 - 20 - 39 - 39 - 39 - 0 - - - 1048 - Drezel - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1049 - Drezel - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1050 - Filliman Tarlock - The animated spirit of a soul not at rest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1051 - Nature Spirit - A spirit of Nature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1052 - Ghast - Arrghhh... A Ghast. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1053 - Ghast - Arrghhh... A Ghast. - 30 - 2 - true - true - false - false - 10 - 1 - 45 - 4000 - 1087 - 1088 - 1089 - 58 - 58 - 58 - 0 - - - 1054 - Ulizius - A slightly nervous guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1055 - Pirate Jackie the Fruit - Ticket trader for the Brimhaven Agility Arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1056 - Mime - A mute performer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1057 - Strange watcher - A member of the audience. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1058 - Strange watcher - A member of the audience. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1059 - Strange watcher - A member of the audience. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1060 - Denulth - Commander of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1061 - Sergeant - A sergeant of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1062 - Sergeant - A sergeant of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1063 - Soldier - A soldier of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1064 - Soldier - A soldier of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1065 - Soldier - A soldier of the Imperial Guard. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1066 - Soldier - A soldier of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1067 - Soldier - A soldier of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1068 - Soldier - A soldier of the Imperial Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1069 - Soldier - A soldier of the Imperial Guard. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1070 - Saba - A dishevelled and irritable hermit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1071 - Tenzing - An experienced sherpa. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1072 - Eadburg - The Burthorpe Castle cook. - 4 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1073 - Archer - A Burthorpe Castle archer. - 42 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1074 - Archer - A Burthorpe Castle archer. - 42 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1075 - Archer - A Burthorpe Castle archer. - 42 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1076 - Guard - A Burthorpe Castle guard. - 37 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 1077 - Guard - A Burthorpe Castle guard. - 37 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 1078 - Harold - An off-duty Burthorpe Castle guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1079 - Tostig - Barman of the Toad and Chicken. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1080 - Eohric - Head servant for Prince Anlaf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1081 - Servant - A servant for Prince Anlaf. - 5 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1082 - Dunstan - Smithy for Burthorpe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1083 - Wistan - Shopkeeper for Burthorpe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1084 - Breoca - A citizen of Burthorpe. - 5 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1085 - Ocga - A citizen of Burthorpe. - 5 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1086 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 1087 - Penda - A citizen of Burthorpe. - 5 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1088 - Hygd - A citizen of Burthorpe. - 4 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1089 - Ceolburg - A citizen of Burthorpe. - 4 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1090 - Hild - A pretty young woman with an air of mystery around her. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1091 - Bob - The Jagex cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1092 - White Knight - The knight seems to be watching something. - 36 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1093 - Billy - Billy is a baa-a-a-d goat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1094 - Mountain goat - This beast doesn't need climbing boots. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1095 - Rock - The biggest and baddest troll. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 1142 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1096 - Stick - A big, bad troll. - 104 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1097 - Pee Hat - A nasty looking troll. - 91 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1098 - Kraka - A nasty looking troll. - 91 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1099 - Dung - Human is his speciality. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1100 - Ash - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1101 - Thrower Troll - Small for a troll but mean, ugly and throws rocks. - 67 - 1 - true - true - false - false - 10 - 1 - 96 - 4000 - 284 - 285 - 287 - 124 - 124 - 124 - 0 - - - 1102 - Thrower Troll - Small for a troll but mean, ugly and throws rocks. - 67 - 1 - true - true - false - false - 10 - 1 - 96 - 4000 - 284 - 285 - 287 - 124 - 124 - 124 - 0 - - - 1103 - Thrower Troll - Small for a troll but mean, ugly and throws rocks. - 67 - 1 - true - true - false - false - 10 - 1 - 96 - 4000 - 284 - 285 - 287 - 124 - 124 - 124 - 0 - - - 1104 - Thrower Troll - Small for a troll but mean, ugly and throws rocks. - 67 - 1 - true - true - false - false - 10 - 1 - 96 - 4000 - 284 - 285 - 287 - 124 - 124 - 124 - 0 - - - 1105 - Thrower Troll - Small for a troll but mean, ugly and throws rocks. - 67 - 1 - true - true - false - false - 10 - 1 - 96 - 4000 - 284 - 285 - 287 - 124 - 124 - 124 - 0 - - - 1106 - Mountain troll - Small for a troll but mean and ugly. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1107 - Mountain troll - Small for a troll but mean and ugly. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 422 - 404 - 2304 - 117 - 117 - 117 - 0 - - - 1108 - Mountain troll - It's an NPC. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1109 - Mountain troll - Small for a troll but mean and ugly. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1110 - Mountain troll - Small for a troll but mean and ugly. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1111 - Mountain troll - Small for a troll but mean and ugly. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1112 - Mountain troll - Small for a troll but mean and ugly. - 69 - 1 - true - true - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1113 - Eadgar - A rather mad-looking hermit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1114 - Godric - Dunstan's son. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1115 - Troll general - One of the troll generals. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 1142 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1116 - Troll general - One of the troll generals. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1117 - Troll general - One of the troll generals. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1118 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1119 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1120 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1121 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1122 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1123 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1124 - Troll spectator - He's watching the arena. - 71 - 1 - true - false - false - false - 10 - 1 - 90 - 4000 - 284 - 285 - 287 - 117 - 117 - 117 - 0 - - - 1125 - Dad - An unusually large troll. - 101 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1126 - Twig - He's guarding the cells. - 71 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1127 - Berry - He's guarding the cells. - 71 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1128 - Twig - He's guarding the cells. - 71 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1129 - Berry - He's guarding the cells. - 71 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1130 - Thrower troll - Small for a troll, but it's mean, ugly and throws rocks. - 68 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1131 - Thrower troll - Small for a troll, but it's mean, ugly and throws rocks. - 68 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1132 - Thrower troll - Small for a troll, but it's mean, ugly and throws rocks. - 68 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1133 - Thrower troll - Small for a troll, but it's mean, ugly and throws rocks. - 68 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1134 - Thrower troll - Small for a troll, but it's mean, ugly and throws rocks. - 68 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 284 - 285 - 287 - 13 - 13 - 13 - 0 - - - 1135 - Cook - Human is his speciality. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1136 - Cook - Human is his speciality. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1137 - Cook - Human is his speciality. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1138 - Mountain troll - Small for a troll, but mean and ugly. - 71 - 1 - true - true - false - false - 10 - 1 - 92 - 4000 - 284 - 285 - 287 - 119 - 119 - 119 - 0 - - - 1139 - Mushroom - He's fast asleep. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1140 - Mountain goat - This beast doesn't need climbing boots. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1141 - Mountain goat - This beast doesn't need climbing boots. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1142 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1143 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1144 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1145 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1146 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1147 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1148 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1149 - Guard - He's guarding the storeroom. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1150 - Guard - He's guarding the goutweed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1151 - Burntmeat - Human is his speciality. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1152 - Weird Old Man - What's he mumbling about? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1153 - Kalphite Worker - I don't think insect repellent will work... - 28 - 2 - true - true - false - false - 10 - 3 - 40 - 4000 - 1184 - 1186 - 1187 - 52 - 52 - 52 - 52 - - - 1154 - Kalphite Soldier - I don't think insect repellent will work... - 85 - 3 - true - true - false - true - 10 - 1 - 90 - 4000 - 1184 - 1186 - 1187 - 117 - 117 - 117 - 117 - - - 1155 - Kalphite Guardian - I don't think insect repellent will work... - 141 - 4 - true - true - false - true - 10 - 12 - 170 - 4000 - 1184 - 1186 - 1187 - 221 - 221 - 221 - 221 - - - 1156 - Kalphite Worker - I don't think insect repellent will work... - 28 - 2 - true - true - false - false - 10 - 3 - 40 - 4000 - 1184 - 1186 - 1187 - 52 - 52 - 52 - 52 - - - 1157 - Kalphite Guardian - I don't think insect repellent will work... - 141 - 4 - true - true - false - true - 10 - 12 - 170 - 4000 - 1184 - 1186 - 1187 - 221 - 221 - 221 - 221 - - - 1158 - Kalphite Queen - I don't think insect repellent will work... - 333 - 5 - true - true - false - false - 10 - 31 - 255 - 4000 - 1184 - 1186 - 1187 - 331 - 331 - 331 - 331 - - - 1159 - Kalphite Queen - I don't think insect repellent will work... - 333 - 5 - false - true - false - false - 10 - 1 - 255 - 4000 - 1185 - 1186 - 1187 - 331 - 331 - 331 - 331 - - - 1160 - Kalphite Queen - I don't think insect repellent will work... - 333 - 5 - true - true - false - false - 10 - 31 - 255 - 4000 - 1177 - 1179 - 1182 - 331 - 331 - 331 - 331 - - - 1161 - Kalphite Larva - I don't think insect repellent will work... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1162 - Timfraku - The imposing Chief of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1163 - Tiadeche - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1164 - Tiadeche - A rather depressed looking fisherman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1165 - Tinsay - A more than slightly eccentric looking priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1166 - Tinsay - A more than slightly eccentric looking priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1167 - Tamayu - A hunter who long ago succumbed to blood lust. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1168 - Tamayu - A hunter who long ago succumbed to blood lust. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1169 - Tamayu - A hunter who long ago succumbed to blood lust. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1170 - Tamayu - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1171 - Lubufu - A crotchety old fisherman who doesn't like young whippersnappers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1172 - The Shaikahan - A huge beast, resembling in some ways a lion, but mostly a twisted nightmare. - 83 - 3 - true - true - false - false - 10 - 1 - 100 - 4000 - 1199 - 1200 - 1201 - 130 - 130 - 130 - 0 - - - 1173 - The Shaikahan - A huge beast, resembling in some ways a lion, but mostly a twisted nightmare. - 83 - 3 - false - true - false - false - 10 - 1 - 100 - 4000 - 1199 - 1200 - 1201 - 130 - 130 - 130 - 0 - - - 1174 - Fishing spot - There are brightly coloured fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1175 - Fishing spot - There are brightly coloured fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1176 - Fishing spot - Something dark green is lurking in these waters. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1177 - Fishing spot - Something dark green is lurking in these waters. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1178 - Fishing spot - Something dark green is lurking in these waters. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1179 - Gull - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1180 - Cormorant - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1181 - Albatross - A sea bird. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1182 - Lord Iorwerth - An elf lord. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1183 - Elf warrior - He looks pretty handy with that bow. - 90 - 1 - true - false - false - false - 10 - 1 - 105 - 4000 - 426 - 1834 - 836 - 136 - 136 - 136 - 0 - - - 1184 - Elf warrior - I don't wanna be at the wrong end of that pike. - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1185 - Elven city guard - An elven city guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1186 - Idris - An elven hunting party leader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1187 - Essyllt - An elven war band leader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1188 - Morvran - An elven warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1189 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1190 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1191 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1192 - Rabbit - A cute bunny rabbit. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 1245 - 1244 - 1246 - 6 - 6 - 6 - 0 - - - 1193 - Rabbit - A cute bunny rabbit. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 1245 - 1244 - 1246 - 6 - 6 - 6 - 0 - - - 1194 - Rabbit - A cute bunny rabbit. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 1245 - 1244 - 1246 - 6 - 6 - 6 - 0 - - - 1195 - Grizzly bear - Eek! A big bear! - 42 - 2 - true - false - false - false - 10 - 1 - 35 - 4000 - 41 - 42 - 44 - 45 - 45 - 45 - 0 - - - 1196 - Grizzly bear cub - Eek! A bear cub! - 33 - 2 - true - false - false - false - 10 - 1 - 35 - 4000 - 41 - 42 - 44 - 45 - 45 - 45 - 0 - - - 1197 - Grizzly bear cub - Eek! A bear cub! - 36 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 41 - 42 - 44 - 45 - 45 - 45 - 0 - - - 1198 - Dire Wolf - What big teeth you have. - 88 - 2 - true - true - false - false - 10 - 1 - 86 - 4000 - 75 - 76 - 78 - 111 - 111 - 111 - 0 - - - 1199 - Elf Tracker - An elf tracker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1200 - Tyras guard - One of King Tyras's men. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1201 - Elf warrior - He looks pretty handy with that bow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1202 - Arianwyn - An odd looking person. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1203 - Tyras guard - One of King Tyras's men. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1204 - Tyras guard - One of King Tyras's men. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1205 - Tyras guard - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1206 - Tyras guard - One of King Tyras's men. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1207 - General Hining - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1208 - Quartermaster - Responsible for the food and equipment of the troops. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1209 - Koftik - The cave guide. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1210 - Kings messenger - One of King Lathas' messengers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1211 - Will o' the wisp - Mysterious swamp lights... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1212 - Will o' the wisp - Mysterious swamp lights... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1213 - Tegid - He's washing his clothes in the lake. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1214 - Thistle - It's a Troll Thistle. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1215 - Parrots - What a colourful bunch of parrots! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1216 - Parroty Pete - He seems strangely familiar... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1217 - Gardener - An old gardener. - 4 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 1218 - Ghoul - It's totally savage. - 42 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1219 - Leech - Yuck! It's all slimy! - 52 - 1 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 1220 - Vampire - Where did that come from? - 72 - 1 - true - true - false - false - 10 - 1 - 56 - 4000 - 422 - 404 - 2304 - 72 - 72 - 72 - 0 - - - 1221 - Spider - Nasty little creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1222 - Mist - Is it a low cloud? - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1223 - Vampire - It looks really hungry! - 61 - 1 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 1224 - Vampyric hound - And I shall call him Fang. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 75 - 76 - 78 - 13 - 13 - 13 - 0 - - - 1225 - Vampire - A royal pain in the neck. - 25 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1226 - Tree - Its bark is worse than its swipe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1227 - Myre Blamish Snail - A marsh coloured blamish snail, these types are said to spit acid. - 9 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 1277 - 1278 - 1279 - 10 - 10 - 10 - 0 - - - 1228 - Blood Blamish Snail - A blood coloured blamish snail, these types are said to spit acid. - 20 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 1277 - 1278 - 1279 - 13 - 13 - 13 - 0 - - - 1229 - Ochre Blamish Snail - A muddy coloured blamish snail, these types are said to spit acid. - 10 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1277 - 1278 - 1279 - 13 - 13 - 13 - 0 - - - 1230 - Bruise Blamish Snail - A bruise blue coloured blamish snail, these types are said to spit acid. - 20 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 1277 - 1278 - 1279 - 15 - 15 - 15 - 0 - - - 1231 - Bark Blamish Snail - A branch bark coloured blamish snail, these types are said to spit acid. - 15 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 1277 - 1278 - 1279 - 29 - 29 - 29 - 0 - - - 1232 - Myre Blamish Snail - A marsh coloured blamish snail, these types are said to spit acid. - 10 - 1 - true - false - false - false - 10 - 1 - 9 - 4000 - 1277 - 1278 - 1279 - 11 - 11 - 11 - 0 - - - 1233 - Blood Blamish Snail - A blood coloured blamish snail, these types are said to spit acid. - 20 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 1277 - 1278 - 1279 - 13 - 13 - 13 - 0 - - - 1234 - Ochre Blamish Snail - A muddy coloured blamish snail, these types are said to spit acid. - 15 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 1277 - 1278 - 1279 - 26 - 26 - 26 - 0 - - - 1235 - Bruise Blamish Snail - A bruise blue coloured blamish snail, these types are said to spit acid. - 20 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 1277 - 1278 - 1279 - 15 - 15 - 15 - 0 - - - 1236 - Fishing spot - It looks like there might be 'things' swimming in the murky water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1237 - Fishing spot - It looks like there might be 'things' swimming in the murky water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1238 - Fishing spot - It looks like there might be 'things' swimming in the murky water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1239 - Bedabin Nomad Fighter - A bedabin nomad fighter - a sandy swordsman. - 56 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1240 - Loar Shadow - A shadowy sort of entity, kind of creepy looking. - 40 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 1290 - 1290 - 1290 - 0 - 0 - 0 - 0 - - - 1241 - Loar Shade - The shadowy remains of a long departed soul. - 40 - 1 - true - true - false - false - 10 - 1 - 38 - 4000 - 1284 - 1283 - 1285 - 49 - 49 - 49 - 0 - - - 1242 - Shade Spirit - A spirit rising towards eternal peace. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1243 - Phrin Shadow - A shadowy sort of entity, kind of creepy looking. - 60 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 1290 - 1290 - 1290 - 0 - 0 - 0 - 0 - - - 1244 - Phrin Shade - The shadowy remains of a long departed soul. - 60 - 1 - true - true - false - false - 10 - 1 - 56 - 4000 - 1284 - 1283 - 1285 - 72 - 72 - 72 - 0 - - - 1245 - Riyl Shadow - A shadowy sort of entity, kind of creepy looking. - 80 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 1246 - Riyl Shade - The shadowy remains of a long departed soul. - 80 - 1 - true - true - false - false - 10 - 1 - 74 - 4000 - 1284 - 1283 - 1285 - 96 - 96 - 96 - 0 - - - 1247 - Asyn Shadow - A shadowy sort of entity, kind of creepy looking. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1290 - 1290 - 1290 - 13 - 13 - 13 - 0 - - - 1248 - Asyn Shade - The shadowy remains of a long departed soul. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1284 - 1283 - 1285 - 13 - 13 - 13 - 0 - - - 1249 - Fiyr Shadow - A shadowy sort of entity, kind of creepy looking. - 120 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 1290 - 1290 - 1290 - 0 - 0 - 0 - 0 - - - 1250 - Fiyr Shade - The shadowy remains of a long departed soul. - 120 - 1 - true - true - false - false - 10 - 1 - 110 - 4000 - 1284 - 1283 - 1285 - 143 - 143 - 143 - 0 - - - 1251 - Afflicted(Ulsquire) - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1252 - Ulsquire Shauncy - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1253 - Afflicted(Razmire) - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1254 - Razmire Keelgan - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1255 - Mort'ton Local - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1256 - Mort'ton Local - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1257 - Afflicted - A local villager of Mort'ton. - 37 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1258 - Afflicted - A local villager of Mort'ton. - 34 - 1 - true - false - false - false - 10 - 1 - 38 - 4000 - 422 - 404 - 2304 - 49 - 49 - 49 - 0 - - - 1259 - Mort'ton local - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1260 - Mort'ton local - A local villager of Mort'ton. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1261 - Afflicted - A local villager of Mort'ton. - 32 - 1 - true - false - false - false - 10 - 1 - 28 - 4000 - 422 - 404 - 2304 - 36 - 36 - 36 - 0 - - - 1262 - Afflicted - A local villager of Mort'ton. - 30 - 1 - true - false - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 1263 - Wizard - Slightly more magical. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1264 - Saradomin wizard - A follower of Saradomin. - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1265 - Rock Crab - No one likes crabs... - 13 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 1312 - 1313 - 1314 - 65 - 65 - 65 - 0 - - - 1266 - Rocks - A rocky outcrop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1267 - Rock Crab - No one likes crabs... - 13 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 1312 - 1313 - 1314 - 65 - 65 - 65 - 0 - - - 1268 - Rocks - A rocky outcrop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1269 - Olaf the Bard - A Fremennik bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1270 - Lalli - Distinctly troll-shaped. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1271 - Golden sheep - Freshly shorn. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1272 - Golden sheep - Lovely thick wool. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1273 - Fossegrimen - A powerful spirit that lives in this lake. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1274 - Ospak - Looks like he's had a few drinks already. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1275 - Styrmir - Doesn't look like the musical type. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1276 - Torbrund - Waiting for the show. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1277 - Fridgeir - A music lover? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1278 - Longhall Bouncer - He's fat, he's round, he bounces on the ground. That's how he got the job. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1279 - The Draugen - A fearful spirit of the drowned. - 69 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1280 - Butterfly - Flutter by oh butterfly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1281 - Sigli the Huntsman - A Fremennik hunter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1282 - Sigmund The Merchant - A Fremennik merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1283 - Swensen the Navigator - A Fremennik navigator. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1284 - Bjorn - Looks like he's having fun! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1285 - Eldgrim - He's only as think as you drunk he is! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1286 - Manni the Reveller - Every innkeeper's best friend! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1287 - Council workman - Supposedly fixes things around Wildy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1288 - Peer the Seer - A Fremennik riddler. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1289 - Thorvald the Warrior - A Fremennik hero. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1290 - Koschei the deathless - Your challenge awaits! - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1291 - Koschei the deathless - Your challenge awaits! - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1292 - Koschei the deathless - Your challenge awaits! - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1293 - Koschei the deathless - Your challenge awaits! - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1294 - Brundt the Chieftain - The Fremennik tribe's chieftain. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1295 - Askeladden - Looks like a wanna be Fremennik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1296 - Guard - Stands around and looks at stuff all day. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1297 - Guard - Stands around and looks tough all day. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1298 - Town Guard - What a rubbish job he has. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1299 - Town Guard - Who's going to steal a whole town anyway? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1300 - Thora the Barkeep - The Longhall barkeep - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1301 - Yrsa - Pretty shabbily dressed for a clothes shop owner. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1302 - Fisherman - There's something fishy about this guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1303 - Skulgrimen - Sells and makes weapons and armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1304 - Sailor - He's strong to the finish, because he eats cabbage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1305 - Agnar - One of Rellekka's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1306 - Freidir - One of Rellekka's many citizens. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1307 - Borrokar - One of Rellekka's many citizens. - 48 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1308 - Lanzig - One of Rellekka's many citizens. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1309 - Pontak - One of Rellekka's many citizens. - 48 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1310 - Freygerd - One of Rellekka's many citizens. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1311 - Lensa - One of Rellekka's many citizens. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1312 - Jennella - One of Rellekka's many citizens. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1313 - Sassilik - One of Rellekka's many citizens. - 48 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1314 - Inga - One of Rellekka's many citizens. - 48 - 1 - false - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1315 - Fish monger - Fish-tastic! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1316 - Fur trader - I wonder what he does with all that fur? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1317 - Market Guard - Keeps the stalls secure. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1318 - Warrior - A hardened Fremennik warrior. - 48 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1319 - Fox - Foxy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1320 - Bunny - Hoppity, hoppity. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1245 - 1244 - 1246 - 13 - 13 - 13 - 0 - - - 1321 - Bunny - Hoppity, hoppity. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1245 - 1244 - 1246 - 13 - 13 - 13 - 0 - - - 1322 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1323 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1324 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1325 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1326 - Bear Cub - Cute. But deadly. - 15 - 2 - true - false - false - false - 10 - 1 - 21 - 4000 - 41 - 42 - 44 - 27 - 27 - 27 - 0 - - - 1327 - Bear Cub - Cute. But deadly. - 15 - 1 - true - false - false - false - 10 - 1 - 21 - 4000 - 41 - 42 - 44 - 27 - 27 - 27 - 0 - - - 1328 - Unicorn Foal - Horned Horsey. - 12 - 2 - true - false - true - false - 10 - 1 - 14 - 4000 - 289 - 290 - 292 - 18 - 18 - 18 - 0 - - - 1329 - Black unicorn Foal - Cute but evil. - 22 - 2 - true - false - true - false - 10 - 1 - 25 - 4000 - 289 - 290 - 292 - 32 - 32 - 32 - 0 - - - 1330 - Wolf - Not man's best friend. - 64 - 2 - true - true - false - false - 10 - 1 - 69 - 4000 - 422 - 404 - 2304 - 89 - 89 - 89 - 0 - - - 1331 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1332 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1333 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1334 - Jossik - Apparently he keeps a lighthouse. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1335 - Jossik - Looks like he's in trouble... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1336 - Larrissa - A fremennik girl. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1337 - Larrissa - A fremennik girl. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1338 - Dagannoth - A horror from the ocean depths... - 74 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 1341 - 1340 - 1342 - 91 - 91 - 91 - 0 - - - 1339 - Dagannoth - A horror from the ocean depths... - 74 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 1341 - 1340 - 1342 - 91 - 91 - 91 - 0 - - - 1340 - Dagannoth - A horror from the ocean depths... - 74 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 1341 - 1340 - 1342 - 91 - 91 - 91 - 0 - - - 1341 - Dagannoth - A horror from the ocean depths... - 92 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1342 - Dagannoth - A horror from the ocean depths... - 92 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1343 - Dagannoth - A horror from the ocean depths... - 92 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 1343 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1344 - Dagannoth - A horror from the ocean depths... - 100 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1345 - Dagannoth - A horror from the ocean depths... - 100 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1346 - Dagannoth - A horror from the ocean depths... - 100 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1347 - Dagannoth - A horror from the ocean depths... - 100 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1348 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1349 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1350 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1351 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1352 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1353 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1354 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1355 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1356 - Dagannoth mother - A horror from the ocean depths... - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 1341 - 1340 - 1342 - 13 - 13 - 13 - 0 - - - 1357 - Sam - Pretty barmaid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1358 - Rachael - Pretty barmaid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1359 - Queen Sigrid - The Queen of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1360 - Banker - He seems happy to see you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1361 - Arnor - A subject of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1362 - Haming - A subject of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1363 - Moldof - A subject of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1364 - Helga - A subject of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1365 - Matilda - A subject of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1366 - Ashild - A subject of Etceteria. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1367 - Skraeling - A warrior of Etceteria. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1368 - Skraeling - A warrior of Etceteria. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1369 - Fishmonger - Hmm, he smells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1370 - Greengrocer - At least he eats his greens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1371 - Prince Brand - The Prince of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1372 - Princess Astrid - The Princess of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1373 - King Vargas - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1374 - Guard - He's guarding the throne room. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1375 - Advisor Ghrim - He probably hasn't smiled since the Third Age. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1376 - Derrik - Smithy for Sogthorpe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1377 - Farmer - He's cutting the wheat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1378 - Flower Girl - No-one would mistake her for a duchess. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1379 - Ragnar - A subject of Miscellania. - 1 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1380 - Einar - A subject of Miscellania. - 1 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1381 - Alrik - A subject of Miscellania. - 1 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1382 - Thorhild - A subject of Miscellania. - 1 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1383 - Halla - A subject of Miscellania. - 1 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1384 - Yrsa - A subject of Miscellania. - 1 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1385 - Sailor - He's strong to the finish, because he eats cabbage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1386 - Rannveig - It's an NPC. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1387 - Thora - A subject of Miscellania. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1388 - Valgerd - A subject of Miscellania. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1389 - Skraeling - A warrior of Miscellania. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1390 - Broddi - A subject of Miscellania. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1391 - Skraeling - A warrior of Miscellania. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1392 - Ragnvald - A subject of Miscellania. - 2 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1393 - Fishmonger - Hmm, he smells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1394 - Greengrocer - At least he eats his greens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1395 - Lumberjack Leif - He's a lumberjack, and he's okay. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1396 - Miner Magnus - He's just mining his own business. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1397 - Fisherman Frodi - There's something fishy about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1398 - Gardener Gunnhild - She's looking a bit weedy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1399 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1400 - Gull - A sea bird. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1401 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 55 - 56 - 57 - 3 - 3 - 3 - 0 - - - 1402 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 55 - 56 - 57 - 3 - 3 - 3 - 0 - - - 1403 - Rooster - He rules the, er, roost. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 55 - 56 - 57 - 13 - 13 - 13 - 0 - - - 1404 - Rabbit - Aww, how cute. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 1245 - 1244 - 1246 - 6 - 6 - 6 - 0 - - - 1405 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1406 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1407 - Daero - Daero gives off an easy sense of authority. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1408 - Waydar - Waydar is some kind of flight officer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1409 - Waydar - Waydar is some kind of flight officer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1410 - Waydar - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1411 - Garkor - A large and weathered looking Gnome veteran. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1412 - Garkor - A large and weathered looking Gnome veteran. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1413 - Lumo - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1414 - Lumo - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1415 - Bunkdo - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1416 - Bunkdo - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1417 - Carado - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1418 - Carado - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1419 - Lumdo - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1420 - Karam - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1421 - Karam - All you see is a glimmer of light and the suggestion of shadow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1422 - Karam - All you see is a glimmer of light and the suggestion of shadow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1423 - Bunkwicket - This Gnome is busy applying some kind of pasty material to the cave walls. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1424 - Waymottin - This Gnome is busy applying some kind of pasty material to the cave walls. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1425 - Zooknock - A wizened little Gnome dressed in brightly coloured clothes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1426 - Zooknock - A wizened little Gnome dressed in brightly coloured clothes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1427 - G.L.O. Caranock - An official looking Gnome with small beady eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1428 - G.L.O. Caranock - An official looking Gnome with small beady eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1429 - Dugopul - A large hairy monkey with a spade. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1430 - Salenab - It's Salenab the monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1431 - Trefaji - A huge brutish gorilla. He looks like a jail guard. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1432 - Aberab - A huge brutish gorilla. He looks like a jail guard. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1433 - Solihib - The food merchant of Ape Atoll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1434 - Daga - A shrewd-looking monkey swordsmith. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1435 - Tutab - A magical trinket dealer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1436 - Ifaba - A general store type of monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1437 - Hamab - A female monkey skilled in crafting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1438 - Hafuba - A huge gorilla, head priest of this temple. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1439 - Denadu - A small, well dressed monkey clasping a mace. He looks like a priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1440 - Lofu - A small, well dressed monkey clasping a mace. He looks like a priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1441 - Kruk - A large ninja monkey wielding two scimitars. - 149 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1442 - Duke - A large ninja monkey wielding two scimitars. - 149 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1443 - Oipuis - A large ninja monkey wielding two scimitars. - 149 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1444 - Uyoro - A large ninja monkey wielding two scimitars. - 149 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1445 - Ouhai - A large ninja monkey wielding two scimitars. - 149 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1446 - Uodai - A large ninja monkey wielding two scimitars. - 149 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1447 - Padulah - A scimitar wielding ninja monkey. He looks like he is guarding something. - 149 - 1 - true - true - false - false - 10 - 1 - 133 - 4000 - 422 - 404 - 2304 - 172 - 172 - 172 - 0 - - - 1448 - Awowogei - A rather dapper little monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1449 - Uwogo - A smartly clothed large monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1450 - Muruwoi - A smartly clothed large monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1451 - Sleeping Monkey - A rather sleepy looking guard, wielding some kind of bat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1452 - Monkey Child - An adorable little monkey child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1453 - The Monkey's Uncle - He looks like the Monkey's Uncle. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1454 - The Monkey's Aunt - She looks like the Monkey's Aunt. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1455 - Monkey Guard - A scimitar wielding ninja monkey. - 149 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1456 - Monkey Archer - A bow wielding ninja monkey. - 86 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1457 - Monkey Archer - A bow wielding ninja monkey. It looks particularly dangerous. - 86 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1458 - Monkey Archer - A bow wielding ninja monkey. - 86 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1459 - Monkey Guard - A huge brutish gorilla armoured with dangerous looking vambraces. - 167 - 2 - true - true - false - false - 10 - 1 - 130 - 4000 - 422 - 404 - 2304 - 169 - 169 - 169 - 0 - - - 1460 - Monkey Guard - A huge brutish gorilla armoured with dangerous looking vambraces. - 167 - 2 - true - true - false - false - 10 - 1 - 130 - 4000 - 422 - 404 - 2304 - 169 - 169 - 169 - 0 - - - 1461 - Elder Guard - A huge brutish gorilla stands here, blocking the way. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1462 - Elder Guard - A huge brutish gorilla stands here, blocking the way. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1463 - Monkey - This monkey seems like it might want to talk! - 3 - 1 - false - false - true - false - 10 - 1 - 6 - 4000 - 422 - 404 - 2304 - 7 - 7 - 7 - 0 - - - 1464 - Monkey - It's an NPC. - 3 - 1 - false - false - true - false - 10 - 1 - 6 - 4000 - 422 - 404 - 2304 - 7 - 7 - 7 - 0 - - - 1465 - Monkey Zombie - A large and lumbering undead monkey. - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1466 - Monkey Zombie - A large and lumbering undead monkey stands here, blocking the way. - 129 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1467 - Monkey Zombie - A recently deceased monkey. Its flesh seems to be worse for the wear. - 82 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1468 - Bonzara - A small monkey dressed in purple clothes. He looks like a priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1469 - Monkey minder - He looks like the type of guy who would mind monkeys. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1470 - Foreman - The boss! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1471 - Skeleton - It looks just a bit... underfed. - 142 - 1 - true - true - false - false - 10 - 1 - 112 - 4000 - 422 - 404 - 2304 - 145 - 145 - 145 - 0 - - - 1472 - Jungle Demon - A Greater Jungle demon. A magical aura emanates from its hide. - 195 - 3 - true - true - false - false - 10 - 1 - 170 - 4000 - 422 - 404 - 2304 - 221 - 221 - 221 - 0 - - - 1473 - Spider - It's an extremely small brown spider, probably very poisonous. - 1 - 1 - true - false - false - false - 10 - 1 - 2 - 4000 - 422 - 404 - 2304 - 2 - 2 - 2 - 0 - - - 1474 - Spider - It's an extremely small brown spider, probably very poisonous. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1475 - Bird - It's a brightly coloured bird of the jungle. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1476 - Bird - It's a brightly coloured bird of the jungle. It flies very quickly. - 5 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 422 - 404 - 2304 - 6 - 6 - 6 - 0 - - - 1477 - Scorpion - It's an extremely dangerous looking scorpion. - 38 - 1 - true - true - false - true - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 1478 - Jungle spider - A very dangerous looking spider, with its fangs unsheathed. - 37 - 1 - true - true - false - true - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 1479 - Snake - It's a camouflaged jungle snake. - 24 - 1 - true - true - false - true - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 1480 - Small ninja monkey - It's a monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1481 - Medium ninja monkey - It's a monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1482 - Gorilla - It's a gorilla. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1483 - Bearded gorilla - It's a gorilla. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1484 - Ancient monkey - It's a monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1485 - Small zombie monkey - It's a monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1486 - Large zombie monkey - It's a monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1487 - Monkey - It's a monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1488 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1489 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1490 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1491 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1492 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1493 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1494 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1495 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1496 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1497 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1498 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1499 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1500 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1501 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1502 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1503 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1504 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1505 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1506 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1507 - Dummy - Dummy - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1508 - Forester - A basic trained mercenary archer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1509 - Woman-at-arms - A basic trained mercenary fighter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1510 - Apprentice - A moderately experienced mercenary mage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1511 - Ranger - A moderately experienced mercenary archer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1512 - Adventurer - An extensively experienced fighter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1513 - Mage - An extensively experienced mage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1514 - Hiylik Myna - A local holy man who works at Paterdomus. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1515 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1516 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1517 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1518 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1519 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1520 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1521 - Nail beast - A huge nail beast. Its nails appear very sharp. - 69 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 1522 - Nail beast - A huge nail beast. Its nails appear very sharp. - 98 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1523 - Nail beast - A huge nail beast. Its nails appear very sharp. - 141 - 2 - true - true - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1524 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1525 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1526 - Lanthus - He must run this place. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1527 - Mine cart - Big, metal and wheeled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1528 - Zealot - His robes prominently display the star of Saradomin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1529 - Sheep - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1530 - Rabbit - Bright eyes. - 1 - 1 - false - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 1531 - Imp - A cheeky chappy. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1532 - Barricade - Perfect for stopping the enemy. - 0 - 1 - true - false - false - false - 10 - 0 - 50 - 0 - 0 - 0 - 0 - 0 - 50 - 50 - 30 - - - 1533 - Barricade - Perfect for stopping the enemy. - 0 - 1 - true - false - false - false - 10 - 0 - 50 - 0 - 0 - 0 - 0 - 0 - 50 - 50 - 30 - - - 1534 - Barricade - Perfect for stopping the enemy. - 0 - 1 - true - false - false - false - 10 - 0 - 50 - 0 - 0 - 0 - 0 - 0 - 50 - 50 - 30 - - - 1535 - Barricade - Perfect for stopping the enemy. - 0 - 1 - true - false - false - false - 10 - 0 - 50 - 0 - 0 - 0 - 0 - 0 - 50 - 50 - 30 - - - 1536 - Possessed pickaxe - How does it move of its own accord? - 50 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 1537 - Iron pickaxe - A strange disturbance in the air. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1538 - Corpse - Well, at least he doesn't have to worry about getting 'black lung'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1539 - Skeletal miner - I don't think the pickaxe is for hitting rocks. - 42 - 1 - true - true - false - false - 10 - 1 - 39 - 4000 - 422 - 404 - 2304 - 50 - 50 - 50 - 0 - - - 1540 - Treus Dayth - Eeek! A big ghost! - 95 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1541 - Ghost - Eeek! A ghost! - 95 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1542 - Loading crane - Those are some of the biggest teeth I've ever seen. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1543 - Innocent-looking key - A shiny key sitting quietly on a crate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1544 - Mine cart - Big, metal and wheeled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1545 - Mine cart - Big, metal and wheeled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1546 - Mine cart - Big, metal and wheeled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1547 - Mine cart - Big, metal, and wheeled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1548 - Mine cart - Big, metal and wheeled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1549 - Ghost - Eeek! A ghost! - 29 - 1 - true - true - false - false - 10 - 1 - 31 - 4000 - 422 - 404 - 2304 - 40 - 40 - 40 - 0 - - - 1550 - Haze - A large boisterous bird, a delicacy for ogres. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1551 - Mischievous ghost - That ghost looks like he's up to something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1552 - Santa - He knows if you've been naughty or nice. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1553 - Ug - A frail little troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1554 - Aga - A beautiful troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1555 - Arrg - A massive, scary-looking troll. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1556 - Arrg - A massive, scary-looking troll. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1557 - Ug - A frail little troll. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1558 - Ice wolf - Not man's best friend. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1559 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1560 - Ice Troll - Brrrrr...he must be cold! - 124 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1561 - Ice Troll - Brrrrr...he must be cold! - 123 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1562 - Ice Troll - Brrrrr...he must be cold! - 120 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 1563 - Ice Troll - Brrrrr...he must be cold! - 121 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1564 - Ice Troll - Brrrrr...he must be cold! - 120 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 1565 - Ice Troll - Brrrrr...he must be cold! - 120 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 1566 - Ice Troll - Brrrrr...he must be cold! - 121 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1567 - Cyreg Paddlehorn - A tall and imposing man who's more than familiar with boating. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1568 - Curpile Fyod - A typical, if overly heavy handed, jobs worth guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1569 - Veliaf Hurtz - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1570 - Sani Piliu - A pretty young rogue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1571 - Harold Evans - Hot headed big built youth who trained in the militia. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1572 - Radigad Ponfit - A quick and agile fighter, a mercenary from Asgarnia. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1573 - Polmafi Ferdygris - A member of the Myreque and intellectual assistant to Veliaf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1574 - Ivan Strom - A member of the Myreque and an aspiring young priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1575 - Skeleton Hellhound - A creature summoned by Vanstrom to kill the remaining Myreque. - 97 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1576 - Stranger - A typical villager of Canifis. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1577 - Vanstrom Klause - A curious fellow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1578 - Mist - A billowing cloud of fine mist...it looks creepy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1579 - Vanstrom Klause - A curious fellow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1580 - Vanstrom Klause - An evil vampire. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1581 - Vanstrom Klause - An evil vampire. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1582 - Fire giant - A very large elemental adversary. - 86 - 2 - true - true - false - false - 10 - 1 - 111 - 4000 - 422 - 404 - 2304 - 144 - 144 - 144 - 0 - - - 1583 - Fire giant - A very large elemental adversary. - 86 - 2 - true - true - false - false - 10 - 1 - 111 - 4000 - 422 - 404 - 2304 - 144 - 144 - 144 - 0 - - - 1584 - Fire giant - A very large elemental adversary. - 86 - 2 - true - true - false - false - 10 - 1 - 111 - 4000 - 422 - 404 - 2304 - 144 - 144 - 144 - 0 - - - 1585 - Fire giant - A very large elemental adversary. - 86 - 2 - true - true - false - false - 10 - 1 - 111 - 4000 - 422 - 404 - 2304 - 144 - 144 - 144 - 0 - - - 1586 - Fire giant - A very large elemental adversary. - 86 - 2 - true - true - false - false - 10 - 1 - 111 - 4000 - 422 - 404 - 2304 - 144 - 144 - 144 - 0 - - - 1587 - Moss giant - His beard seems to have a life of its own. - 42 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1588 - Moss giant - His beard seems to have a life of its own. - 42 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1589 - Baby dragon - Young but still dangerous. - 48 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 25 - 26 - 28 - 13 - 13 - 13 - 0 - - - 1590 - Bronze dragon - Its scales seem to be made of bronze. - 131 - 4 - true - true - false - false - 10 - 1 - 122 - 4000 - 422 - 404 - 2304 - 158 - 158 - 158 - 0 - - - 1591 - Iron dragon - Its scales seem to be made of iron. - 189 - 4 - true - true - false - false - 10 - 1 - 165 - 4000 - 422 - 404 - 2304 - 214 - 214 - 214 - 0 - - - 1592 - Steel dragon - Its scales seem to be made of steel. - 246 - 4 - true - true - false - false - 10 - 1 - 210 - 4000 - 422 - 404 - 2304 - 273 - 273 - 273 - 0 - - - 1593 - Wild dog - Looks like it's got Rabies! - 63 - 1 - true - true - false - false - 10 - 1 - 56 - 4000 - 422 - 404 - 2304 - 72 - 72 - 72 - 0 - - - 1594 - Wild dog - An unsuitable pet. - 63 - 1 - true - true - false - false - 10 - 1 - 56 - 4000 - 422 - 404 - 2304 - 72 - 72 - 72 - 0 - - - 1595 - Saniboch - Looks like he wants money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1596 - Mazchna - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1597 - Vannaka - He looks dangerous! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1598 - Chaeldar - She looks dangerous! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1599 - Duradel - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1600 - Cave crawler - A spiky crawling critter. - 23 - 2 - true - true - false - true - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 1601 - Cave crawler - A spiky crawling critter. - 23 - 2 - true - true - false - true - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 1602 - Cave crawler - A spiky crawling critter. - 23 - 2 - true - true - false - true - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 1603 - Cave crawler - A spiky crawling critter. - 23 - 2 - true - true - false - true - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 1604 - Aberrant spectre - A very smelly ghost. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1605 - Aberrant spectre - A very smelly ghost. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1606 - Aberrant spectre - A very smelly ghost. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1607 - Aberrant spectre - A very smelly ghost. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1608 - Kurask - Large, heavy, with sharp things attached to its head. - 106 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1609 - Kurask - Larger, heavier, with sharper things attached to its head. - 106 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1610 - Gargoyle - Flies like a rock. - 111 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1611 - Gargoyle - A vicious bite on a feeble body. - 111 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1612 - Banshee - A tortured screaming soul. - 23 - 2 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 1613 - Nechryael - An evil death demon. - 115 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1614 - Death spawn - An evil death spawn. - 46 - 1 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1615 - Abyssal demon - A denizen of the Abyss! - 124 - 1 - true - false - false - false - 10 - 1 - 150 - 4000 - 422 - 404 - 2304 - 195 - 195 - 195 - 0 - - - 1616 - Basilisk - The eyes of evil. - 61 - 2 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1617 - Basilisk - The eyes of evil. - 61 - 2 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1618 - Bloodveld - The tongue of evil. - 76 - 2 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 1619 - Bloodveld - The tongue of evil. - 76 - 2 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 1620 - Cockatrice - The winged reptile. - 37 - 2 - true - false - false - false - 10 - 1 - 37 - 4000 - 422 - 404 - 2304 - 48 - 48 - 48 - 0 - - - 1621 - Cockatrice - The winged reptile. - 37 - 3 - true - false - false - false - 10 - 1 - 37 - 4000 - 422 - 404 - 2304 - 48 - 48 - 48 - 0 - - - 1622 - Rockslug - He's one leg short! - 29 - 1 - true - false - false - false - 10 - 1 - 27 - 4000 - 422 - 404 - 2304 - 35 - 35 - 35 - 0 - - - 1623 - Rockslug - He's one big leg short! - 29 - 1 - true - false - false - false - 10 - 1 - 27 - 4000 - 422 - 404 - 2304 - 35 - 35 - 35 - 0 - - - 1624 - Dust devil - The vacuumed face of evil. - 93 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 1557 - 1555 - 1558 - 13 - 13 - 13 - 0 - - - 1625 - Smokedevil - The cave-dwelling cousin of the dust devils. - 93 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1626 - Turoth - She's one leg short! - 86 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1627 - Turoth - It's one leg short! - 89 - 2 - true - false - false - false - 10 - 1 - 81 - 4000 - 422 - 404 - 2304 - 105 - 105 - 105 - 0 - - - 1628 - Turoth - It's one small leg short! - 87 - 2 - true - false - false - false - 10 - 1 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - - 1629 - Turoth - He's one big leg short! - 85 - 1 - true - false - false - false - 10 - 1 - 77 - 4000 - 422 - 404 - 2304 - 100 - 100 - 100 - 0 - - - 1630 - Turoth - He's one big leg short! - 83 - 1 - true - false - false - false - 10 - 1 - 76 - 4000 - 422 - 404 - 2304 - 98 - 98 - 98 - 0 - - - 1631 - Turoth - The slime of evil. - 88 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1632 - Turoth - The slime of evil. - 88 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1633 - Pyrefiend - A small fire demon. - 43 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 1634 - Pyrefiend - A small fire demon. - 43 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 1635 - Pyrefiend - A small fire demon. - 43 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 1636 - Pyrefiend - A small fire demon. - 43 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 1637 - Jelly - Looks scared to see me. - 78 - 1 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1638 - Jelly - Doesn't look so tough... - 78 - 1 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1639 - Jelly - Wibbly. - 78 - 1 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1640 - Jelly - There's always room for jelly. - 78 - 1 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1641 - Jelly - Needs cream..... - 78 - 1 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1642 - Jelly - Wobbly... - 78 - 1 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1643 - Infernal Mage - An evil magic user. - 66 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 429 - 430 - 2304 - 78 - 78 - 78 - 0 - - - 1644 - Infernal Mage - An evil magic user. - 66 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1645 - Infernal Mage - An evil magic user. - 66 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1646 - Infernal Mage - An evil magic user. - 66 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1647 - Infernal Mage - An evil magic user. - 66 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1648 - Crawling Hand - Gimmie five. Actually, don't. - 8 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 1649 - Crawling Hand - Gimmie five. Actually, don't. - 8 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 1650 - Crawling Hand - Gimmie five. Actually, don't. - 7 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1651 - Crawling Hand - Gimmie five. Actually, don't. - 8 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 1652 - Crawling Hand - Gimmie five. Actually, don't. - 8 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 1653 - Crawling Hand - Now THAT's handy. - 12 - 2 - true - false - false - false - 10 - 1 - 19 - 4000 - 422 - 404 - 2304 - 24 - 24 - 24 - 0 - - - 1654 - Crawling Hand - I'm glad its just the hand I can see... - 12 - 2 - true - false - false - false - 10 - 1 - 19 - 4000 - 422 - 404 - 2304 - 24 - 24 - 24 - 0 - - - 1655 - Crawling Hand - A big severed hand. - 11 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1656 - Crawling Hand - Give the guy a big hand..... - 12 - 2 - true - false - false - false - 10 - 1 - 19 - 4000 - 422 - 404 - 2304 - 24 - 24 - 24 - 0 - - - 1657 - Crawling Hand - A big severed hand. - 12 - 2 - true - false - false - false - 10 - 1 - 19 - 4000 - 422 - 404 - 2304 - 24 - 24 - 24 - 0 - - - 1658 - Robe Store owner - A Supplier of Magical robes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1659 - Skullball - A human skull used as a ball. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1660 - Skullball Boss - He's in charge of the Skullball Course. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1661 - Agility Boss - He's in charge of the Agility Course. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1662 - Skullball Trainer - A skullball guide. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1663 - Agility Trainer - A werewolf agility trainer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1664 - Agility Trainer - Have you brought him the stick yet? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1665 - Werewolf - Looks like he's guarding a trapdoor... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1666 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1667 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1668 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1669 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1670 - Dr Fenkenstrain - Dr Fenkenstrain I presume. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1671 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1672 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1673 - Fenkenstrain's Monster - A hideous mix of human flesh. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1674 - Lord Rologarth - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1675 - Gardener Ghost - He must find gardening difficult since the accident. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1676 - Experiment - It has a key hanging from its collar. - 51 - 2 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 1677 - Experiment - One of Fenkenstrain's failed experiments. - 25 - 2 - true - false - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 1678 - Experiment - One of Fenkenstrain's failed experiments. - 25 - 1 - true - false - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 1679 - Eluned - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1680 - Islwyn - An elven bowyer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1681 - Moss giant - Bigger than your average moss giant. - 84 - 2 - true - true - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 1682 - Golrie - No longer locked in his own cage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1683 - Velorina - A ghost lady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1684 - Necrovarus - An evil priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1685 - Gravingas - This ghost looks quite rebellious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1686 - Ghost disciple - A ghost disciple. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1687 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1688 - Ak-Haranu - A trader from across the eastern sea. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1689 - Null - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1690 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1691 - Undead cow - It's an undead cow. - 2 - 2 - true - false - true - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 0 - - - 1692 - Undead chicken - Yep, definitely a chicken...an undead chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 1693 - Giant lobster - An extremely vicious lobster. - 32 - 2 - true - false - false - false - 10 - 1 - 32 - 4000 - 422 - 404 - 2304 - 41 - 41 - 41 - 0 - - - 1694 - Robin - A master bowman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1695 - Old crone - An old, cranky lady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1696 - Old man - A creaky old man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1697 - Ghost villager - A spooky ghost villager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1698 - Tortured soul - This poor soul cannot understand why it has not passed to the next world. - 59 - 1 - true - false - false - false - 10 - 1 - 51 - 4000 - 422 - 404 - 2304 - 66 - 66 - 66 - 0 - - - 1699 - Ghost shopkeeper - Beware the ghostly shopkeeper's wares! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1700 - Ghost innkeeper - Doesn't look like the bar's open anymore. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1701 - Ghost farmer - A spooky ghost farmer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1702 - Ghost banker - A ghost banker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1703 - Ghost sailor - A ghost sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1704 - Ghost captain - A ghostship captain. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1705 - Ghost captain - A ghostship captain. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1706 - Ghost guard - This ghost guards the gates of Port Phasmatys. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1707 - Ghost (?) - That ghost looks suspiciously like a cheap Halloween costume... - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1708 - Ghost (?) - That ghost looks suspiciously like a cheap Halloween costume... - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1709 - Johanhus Ulsbrecht - The leader of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1710 - H.A.M. Guard - A guard for the humans against monster group. - 12 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1711 - H.A.M. Guard - A guard for the humans against monster group. - 18 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1712 - H.A.M. Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1713 - H.A.M. Deacon - A deacon in the Humans Against Monsters group. A rather enthusiastic chap. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1714 - H.A.M. Member - A member of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1715 - H.A.M. Member - A member of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1716 - H.A.M. Member - A member of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1717 - H.A.M. Member - A member of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1718 - Jimmy the Chisel - A young man with a dark and mysterious past. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1719 - Tree - Aww. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1720 - Tree - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1721 - Tree - Aww. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1722 - Dead tree - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1723 - Dead tree - Aww. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1724 - Dead tree - Aww. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1725 - Dead tree - Aww. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1726 - Dead tree - Aww. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1727 - Dead tree - Assistant teacher of the Dorgesh-Kaan nursery school. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1728 - Dead tree - A scientist exploring the ways of magic. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1729 - Dead tree - A scientist who explores the ways of magic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1730 - Dead tree - What is he plotting this time? - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1731 - Dead tree - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1732 - Null - Where did his boot go? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1733 - Dramen tree - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1734 - Magic tree - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1735 - Maple tree - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1736 - Willow - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1737 - Willow - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1738 - Willow - Former adviser to the Duke of Lumbridge. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1739 - Oak - Manages the mill. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1740 - Yew - One of Sigmund's elite guards. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1741 - Evergreen - One of Sigmund's elite guards. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1742 - Evergreen - A member of Sigmund's H.A.M. splinter group. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1743 - Evergreen - A member of Sigmund's H.A.M. splinter group. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1744 - Tree - A member of Sigmund's H.A.M. splinter group. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1745 - Dead tree - A member of Sigmund's H.A.M. splinter group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1746 - Achey Tree - A member of Sigmund's H.A.M. splinter group. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1747 - Tree - A member of Sigmund's H.A.M. splinter group. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1748 - Tree - A member of Sigmund's H.A.M. splinter group. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1749 - Hollow tree - Good at shorthand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1750 - Hollow tree - He sells 'exotic' ingredients to the cave goblins. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1751 - Crow - A giant raptor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1752 - Crow - These gnomes know how to get around! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1753 - Crow - These gnomes know how to get around! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1754 - Crow - A farmer's enemy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1755 - Crow - A farmer's enemy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1756 - Crow - A farmer's enemy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1757 - Farmer - He grows the crops in this area. - 7 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 1758 - Farmer - He grows the crops in this area. - 7 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 1759 - Farmer - Farming. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1760 - Farmer - Farming. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1761 - Farmer - Farming the wheat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1762 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1763 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1764 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1765 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1766 - Cow calf - Prelude to a steak. - 2 - 2 - true - false - false - false - 10 - 1 - 6 - 4000 - 59 - 60 - 62 - 7 - 7 - 7 - 0 - - - 1767 - Cow - Where beef comes from. - 2 - 2 - true - false - false - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 0 - - - 1768 - Cow calf - Young and tender; nearly ready for the slaughter. - 2 - 2 - true - false - false - false - 10 - 1 - 6 - 4000 - 59 - 60 - 62 - 7 - 7 - 7 - 0 - - - 1769 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 1770 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 1771 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 1772 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 1773 - Goblin - It's an NPC. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 1774 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 0 - - - 1775 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 0 - - - 1776 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 0 - - - 1777 - Ilfeen - A female elf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1778 - William - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1779 - Ian - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1780 - Larry - A not-so-brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1781 - Darren - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1782 - Edward - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1783 - Richard - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1784 - Neil - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1785 - Edmond - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1786 - Simon - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1787 - Sam - A very brave merchant. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1788 - Lumdo - A seasoned looking Gnome foot soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1789 - Bunkwicket - A Gnome soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1790 - Waymottin - A Gnome soldier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1791 - Jungle Tree - He sold poisoned ingredients to the cave goblins. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1792 - Jungle Tree - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1793 - Tassie Slipcast - A hard-working potter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1794 - Hammerspike Stoutbeard - He looks quite independent in an aggressive and business like way. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1795 - Dwarf gang member - A short stout menacing fellow. - 44 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 1796 - Dwarf gang member - A short stout menacing fellow. - 48 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 1797 - Dwarf gang member - A short stout menacing fellow. - 49 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 1798 - Phantuwti Fanstuwi Farsight - A slightly more eccentric seer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1799 - Tindel Marchant - He seems quietly enthusiastic about his profession. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1800 - Gnormadium Avlafrim - Enthusiastic gnome construction engineer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1801 - Petra Fiyed - An energetic female adventuress. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1802 - Slagilith - This monster totally rocks! - 92 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1803 - Rock pile - A pile of boulders. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1804 - Slagilith - This monster totally rocks! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1805 - Guard - He seems to be guarding a pile of rocks. Interesting job. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1806 - Guard - He seems to be guarding a single rock. Interesting job. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1807 - Hamal the Chieftain - The Chieftain of the mountain camp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1808 - Ragnar - He looks a little lost, himself. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1809 - Svidi - Is he walking around in circles? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1810 - Jokul - He seems to be minding the goats. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1811 - Null - Is that a bear... or a man? - 1 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1812 - The Kendal - Is that a bear... or a man? - 70 - 2 - true - true - false - false - 10 - 1 - 63 - 4000 - 422 - 404 - 2304 - 81 - 81 - 81 - 0 - - - 1813 - The Kendal - Is that a bear... or a man? - 70 - 2 - true - true - false - false - 10 - 1 - 63 - 4000 - 422 - 404 - 2304 - 81 - 81 - 81 - 0 - - - 1814 - Camp dweller - One of the inhabitants of the camp. - 31 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1815 - Camp dweller - One of the inhabitants of the camp. - 31 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1816 - Camp dweller - One of the inhabitants of the camp. - 31 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1817 - Camp dweller - One of the inhabitants of the camp. - 31 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1818 - Camp dweller - One of the inhabitants of the camp. - 25 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 1819 - Mountain Goat - Looks a little underfed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1820 - Mountain Goat - This goat belongs to the mountain camp people. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1821 - Bald Headed Eagle - A big birdy. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1822 - Cave goblin - A goblin with big bulging eyes. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1823 - Cave goblin - A goblin with big bulging eyes. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1824 - Cave goblin - A goblin with big bulging eyes. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1825 - Cave goblin - A goblin with big bulging eyes. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1826 - Hole in the wall - A human zombie. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1827 - Wall beast - Flies like a rock. - 49 - 1 - true - true - false - false - 10 - 1 - 105 - 4000 - 422 - 404 - 2304 - 136 - 136 - 136 - 0 - - - 1828 - Giant frog - It didn't get that big eating flies. - 99 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1829 - Big frog - It didn't get that big eating flies. - 24 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 1830 - Frog - It eats flies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1831 - Cave slime - A foul-smelling blob of protoplasm. - 23 - 1 - true - false - false - true - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 1832 - Cave bug - A nasty crawling critter. - 6 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 422 - 404 - 2304 - 6 - 6 - 6 - 0 - - - 1833 - Cave bug larva - A little, slimy beetle-thing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1834 - Candle seller - Has an odd smell about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1835 - Easter Bunny - He's lucky it isn't rabbit season. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1836 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1837 - Dondakan the Dwarf - A short, old and gold loving guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1838 - Dondakan the Dwarf - A short, old and gold loving guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1839 - Dondakan the Dwarf - A short, old and gold loving guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1840 - Dwarven Engineer - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1841 - Rolad - He looks a little absent-minded. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1842 - Khorvak, a dwarven engineer - The little guy is having trouble standing up right. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1843 - Dwarven Ferryman - It's probably you who will be paying the ferryman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1844 - Dwarven Ferryman - It's probably you who will be paying the ferryman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1845 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1846 - Dwarven Boatman - He seems to be in charge of the ship on the river. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1847 - Miodvetnir - He seems deeply engaged in conversation with his fellow boatmen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1848 - Dernu - He seems deeply engaged in conversation with his fellow boatmen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1849 - Derni - He seems deeply engaged in conversation with his fellow boatmen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1850 - Arzinian Avatar of Strength - It is the avatar of the Arzinian Being of Bordanzan, representing strength. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1851 - Arzinian Avatar of Strength - It is the avatar of the Arzinian Being of Bordanzan, representing strength. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1852 - Arzinian Avatar of Strength - It is the avatar of the Arzinian Being of Bordanzan, representing strength. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1853 - Arzinian Avatar of Ranging - It is the avatar of the Arzinian Being of Bordanzan, representing ranging. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1854 - Arzinian Avatar of Ranging - It is the avatar of the Arzinian Being of Bordanzan, representing ranging. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1855 - Arzinian Avatar of Ranging - It is the avatar of the Arzinian Being of Bordanzan, representing ranging. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1856 - Arzinian Avatar of Magic - It is the avatar of the Arzinian Being of Bordanzan, representing magic. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1857 - Arzinian Avatar of Magic - It is the avatar of the Arzinian Being of Bordanzan, representing magic. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1858 - Arzinian Avatar of Magic - It is the avatar of the Arzinian Being of Bordanzan, representing magic. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1859 - Arzinian Being of Bordanzan - It's the Arzinian Being, whatever that is, that comes from Bordanzan, wherever that is. - 781 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1860 - Brian - He sells ranged equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1861 - Ranged combat tutor - Nemarti, ready to teach you about Ranged. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1862 - Ali Morrisane - A bazaar merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1863 - Drunken Ali - Drunk man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1864 - Ali The barman - A hassled looking barman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1865 - Ali the Kebab seller - A kebab seller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1866 - Market seller - A market stall keeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1867 - Ali the Camel Man - Ali the discount animal seller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1868 - Street urchin - A mischievous looking child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1869 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1870 - Ali the Mayor - Mayor of Pollnivneach. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1871 - Ali the Hag - An old Hag named Alice. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1872 - Ali the Snake Charmer - A snake charmer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1873 - Ali the Camel - A foul tempered ugly lumpy yellow horse prone to spitting. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1874 - Desert snake - A slithering serpent. - 5 - 1 - true - false - false - false - 10 - 1 - 6 - 4000 - 422 - 404 - 2304 - 7 - 7 - 7 - 0 - - - 1875 - Snake - A toothless old Snake. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1876 - Null - A market stall keeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1877 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1878 - Bandit Leader - Leads the Bandits. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1879 - Null - It's an NPC. - 56 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1880 - Bandit - A vicious thief. - 56 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1881 - Bandit - A vicious thief. - 56 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1882 - Null - One of the Knights of the Round Table. - 41 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1883 - Bandit - One of the Knights of the Round Table. - 41 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1884 - Bandit - A well dressed thief. - 41 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 1885 - Bandit champion - A very tough-looking bandit. - 70 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1886 - Cowardly Bandit - Probably the weakest bandit in the world ....ever. - 56 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1887 - Null - It's an NPC. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1888 - Villager - An old male villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1889 - Villager - An old male villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1890 - Villager - An old male villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1891 - Null - It's an NPC. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1892 - Villager - Male desert villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1893 - Villager - Male desert villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1894 - Villager - Male desert villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1895 - Null - It's an NPC. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1896 - Villager - Female desert villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1897 - Villager - Female desert villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1898 - Villager - Female desert villager. - 3 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1899 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1900 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1901 - Menaphite Leader - Leader of the Menaphites. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1902 - Ali the Operator - Smooth operator. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1903 - Null - It's an NPC. - 55 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1904 - Menaphite Thug - Menaphite thug. - 55 - 1 - true - false - true - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1905 - Menaphite Thug - Menaphite thug. - 55 - 1 - true - false - true - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 1906 - Tough Guy - Tough looking Menaphite. - 75 - 1 - true - true - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 1907 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1908 - Broken clay golem - An animated clay statue with a lot of clay missing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1909 - Damaged clay golem - An animated clay statue with some clay missing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1910 - Clay golem - An animated clay statue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1911 - Desert Phoenix - Definitely not a chicken. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1912 - Elissa - An old archaeologist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1913 - Kamil - Ice warrior. - 154 - 1 - true - true - false - false - 10 - 1 - 130 - 4000 - 422 - 404 - 2304 - 169 - 169 - 169 - 0 - - - 1914 - Dessous - Vampire warrior of Zamorak. - 139 - 1 - true - true - true - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 1915 - Dessous - Vampire warrior of Zamorak. - 139 - 1 - true - true - true - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 1916 - Ruantun - Luckily, I can't see much of his face. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1917 - Bandit shopkeeper - I guess he sells what he steals...? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1918 - Archaeologist - Hardened by the cutthroat world of archaeology. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1919 - Stranger - Very mysterious looking... - 95 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1920 - Malak - One of Morytania's vampiric nobility. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1921 - Bartender - Looks like a rough-and-ready type. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1922 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1923 - Eblis - A very distinguished looking man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1924 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1925 - Eblis - A very distinguished looking man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1926 - Bandit - A tough-looking criminal. - 74 - 1 - true - true - false - false - 10 - 1 - 65 - 4000 - 422 - 404 - 2304 - 84 - 84 - 84 - 0 - - - 1927 - Bandit - A tough-looking criminal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1928 - Bandit - A tough-looking criminal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1929 - Bandit - A tough-looking criminal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1930 - Bandit - A tough-looking criminal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1931 - Bandit - A tough-looking criminal. - 57 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 1932 - Null - A little ice troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1933 - Troll child - A little ice troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1934 - Troll child - A little ice troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1935 - Ice troll - An ice troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1936 - Ice troll - Brrrrr...he must be cold! - 124 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1937 - Ice troll - Brrrrr...he must be cold! - 123 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1938 - Ice troll - Brrrrr...he must be cold! - 120 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 1939 - Ice troll - Brrrrr...he must be cold! - 121 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1940 - Ice troll - Brrrrr...he must be cold! - 120 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 1941 - Ice troll - Brrrrr...he must be cold! - 120 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 1942 - Ice troll - Brrrrr...he must be cold! - 121 - 1 - true - true - false - false - 10 - 1 - 86 - 4000 - 422 - 404 - 2304 - 111 - 111 - 111 - 0 - - - 1943 - Null - It's an NPC. - 34 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1944 - Ice block - A troll frozen in a block of ice. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1945 - Null - It's an NPC. - 34 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1946 - Ice block - A troll frozen in a block of ice. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1947 - Null - An ice troll. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1948 - Troll father - An ice troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1949 - Null - An ice troll. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1950 - Troll mother - An ice troll. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1951 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1952 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1953 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1954 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1955 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1956 - Ice wolf - Not man's best friend. - 132 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1957 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1958 - Mummy - Highly flammable! - 96 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1959 - Mummy - Highly flammable! - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1960 - Mummy ashes - A tightly-wrapped monster. - 96 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1961 - Mummy - A tightly-wrapped monster. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1962 - Mummy - Spooky, bandaged dead dude. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1963 - Mummy - A victim of poor first aid. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1964 - Mummy - But who's the daddy? - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1965 - Mummy - A tightly-wrapped monster. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1966 - Mummy - Spooky, bandaged dead dude. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1967 - Mummy - A victim of poor first aid. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1968 - Mummy - But who's the daddy? - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1969 - Scarabs - I think they're some kind of beetle... - 92 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1970 - Null - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1971 - Azzanadra - A Mahjarrat warrior. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1972 - Rasolo - A travelling merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1973 - Giant skeleton - A giant skeleton. - 80 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 1974 - Damis - The warrior of darkness. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1975 - Damis - The warrior of darkness. - 174 - 1 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 1976 - Shadow Hound - Looks hungry! - 63 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 1977 - Fareed - Zamorak's warrior of fire. - 167 - 1 - true - true - false - false - 10 - 1 - 130 - 4000 - 422 - 404 - 2304 - 169 - 169 - 169 - 0 - - - 1978 - Slave - A malnourished worker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1979 - Slave - A malnourished worker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1980 - Embalmer - A strange-smelling merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1981 - Carpenter - A block of a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1982 - Raetul - A dedicated follower of fashion. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1983 - Siamun - I wonder if they dislike me examining them? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1984 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1985 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1986 - High Priest - A very priestly man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1987 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1988 - Priest - Preach my brother! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1989 - Priest - Priestly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1990 - Sphinx - An awe inspiring combination of a lady, a lion and an eagle. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1991 - Possessed Priest - He has a dangerous glint in his eye. - 91 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1992 - Neite - A graceful feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1993 - Crocodile - Never smile at a... - 63 - 2 - true - true - false - false - 10 - 1 - 62 - 4000 - 422 - 404 - 2304 - 80 - 80 - 80 - 0 - - - 1994 - Jackal - He has had his day. - 21 - 1 - true - false - false - false - 10 - 1 - 27 - 4000 - 422 - 404 - 2304 - 35 - 35 - 35 - 0 - - - 1995 - Locust - Obnoxious, overgrown insect. - 18 - 1 - true - true - false - false - 10 - 1 - 28 - 4000 - 422 - 404 - 2304 - 36 - 36 - 36 - 0 - - - 1996 - Vulture - If you see them circling...run. - 31 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1997 - Plague frog - A very smelly frog. - 11 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 1998 - Plague cow - I might give the burgers a miss in this town. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 1999 - Plague cow - I don't fancy eating any part of this. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2000 - Plague cow - It's a sick-looking cow. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2001 - Scarab swarm - I think they're some kind of beetle. - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2002 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2003 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2004 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2005 - Wanderer - A red-haired woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2006 - Wanderer - A red-haired woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2007 - Het - Guardian of the liver. Guess he doesn't drink. - 81 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2008 - Apmeken - Body of a woman, face of a monkey. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2009 - Scabaras - A scarab headed demi-god. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2010 - Crondis - Body of a woman, head of a crocodile. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2011 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2012 - Icthlarin - A jackal headed demi-god. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2013 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2014 - Klenter - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2015 - Mummy - This mummy looks like it means business! - 84 - 1 - true - true - false - false - 10 - 1 - 91 - 4000 - 422 - 404 - 2304 - 118 - 118 - 118 - 0 - - - 2016 - Mummy - An irate warrior-mummy. - 84 - 1 - true - true - false - false - 10 - 1 - 91 - 4000 - 422 - 404 - 2304 - 118 - 118 - 118 - 0 - - - 2017 - Mummy - This mummy looks like it means business! - 84 - 1 - true - true - false - false - 10 - 1 - 91 - 4000 - 422 - 404 - 2304 - 118 - 118 - 118 - 0 - - - 2018 - Mummy - An irate mummy. - 84 - 1 - true - true - false - false - 10 - 1 - 91 - 4000 - 422 - 404 - 2304 - 118 - 118 - 118 - 0 - - - 2019 - Mummy - A wizened old warrior. - 84 - 1 - true - true - false - false - 10 - 1 - 91 - 4000 - 422 - 404 - 2304 - 118 - 118 - 118 - 0 - - - 2020 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2021 - Light creature - A shimmering creature of blue light. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2022 - Light creature - That one is carrying someone! - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2023 - Juna - An ancient giant serpent. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2024 - Strange Old Man - Wonder how long he's been here... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2025 - Ahrim the Blighted - A vengeful spirit corrupted by dark magic. - 98 - 1 - true - false - false - false - 10 - 0 - 100 - 4000 - 429 - 430 - 2304 - 100 - 50 - -20 - 50 - - - 2026 - Dharok the Wretched - A vengeful spirit corrupted by dark magic. - 115 - 1 - true - false - false - false - 10 - 0 - 100 - 4000 - 2067 - 404 - 2304 - 100 - 50 - 50 - -20 - - - 2027 - Guthan the Infested - A vengeful spirit corrupted by dark magic. - 115 - 1 - true - false - false - false - 10 - 30 - 100 - 4000 - 422 - 404 - 2304 - 100 - 50 - 50 - -20 - - - 2028 - Karil the Tainted - A vengeful spirit corrupted by dark magic. - 98 - 1 - true - false - false - false - 10 - 20 - 100 - 1800 - 2075 - 404 - 2304 - 100 - 130 - 130 - 100 - - - 2029 - Torag the Corrupted - A vengeful spirit corrupted by dark magic. - 115 - 1 - true - false - false - false - 10 - 30 - 100 - 4000 - 422 - 404 - 2304 - 100 - 50 - 50 - -20 - - - 2030 - Verac the Defiled - A vengeful spirit corrupted by dark magic. - 115 - 1 - true - false - false - false - 10 - 30 - 100 - 4000 - 2062 - 404 - 2304 - 100 - 50 - 50 - -20 - - - 2031 - Bloodworm - I think I should keep my distance... - 52 - 1 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 2032 - Crypt rat - A nasty little rodent. - 43 - 1 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 2033 - Giant crypt rat - A nasty overgrown rodent. - 76 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 2034 - Crypt spider - Incey wincey. - 56 - 1 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 2035 - Giant crypt spider - Not very incey wincey. - 79 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 2036 - Skeleton - Could do with gaining a few pounds. - 77 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2037 - Skeleton - Could do with gaining a few pounds. - 77 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2038 - Grish - An ogre shaman - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2039 - Uglug Nar - An ogre shaman - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2040 - Pilg - They're done for! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2041 - Grug - They're done for! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2042 - Ogre guard - An ogre that guards. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2043 - Ogre guard - An ogre that guards. - 76 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2044 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2045 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2046 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2047 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2048 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2049 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2050 - Skogre - An undead skeletal ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2051 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2052 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2053 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2054 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2055 - Zogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2056 - Skogre - A partially decomposing zombie ogre. - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2057 - Skogre - It's falling apart! - 44 - 2 - true - false - false - false - 10 - 1 - 72 - 4000 - 422 - 404 - 2304 - 93 - 93 - 93 - 0 - - - 2058 - Zombie - What could be hiding in that crack in the wall? - 39 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2059 - Zavistic Rarve - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2060 - Slash Bash - A powerful looking Zogre. - 111 - 3 - true - false - false - false - 10 - 35 - 10 - 7500 - 2102 - 2090 - 2088 - 13 - 13 - 13 - 0 - - - 2061 - Sithik Ints - A sick, frail old man. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2062 - Sithik Ints - Is it a man or is it a monster? - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2063 - Gargh - An ogre hunting chompies. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2064 - Scarg - An ogre hunting chompies. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2065 - Gruh - An ogre hunting chompies. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2066 - Irwin Feaselbaum - A young assistant necromancer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2067 - Fishing spot - I can see fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2068 - Fishing spot - I can see fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2069 - Cave goblin miner - This one is slacking off. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2070 - Cave goblin miner - This one is slacking off. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2071 - Cave goblin miner - This one is slacking off. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2072 - Cave goblin miner - This one is slacking off. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2073 - Cave goblin guard - He protects the miners. - 26 - 1 - true - false - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 2074 - Cave goblin guard - He protects the miners. - 24 - 1 - true - false - false - false - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 2075 - Cave goblin miner - He's working away. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2076 - Cave goblin miner - He's working away. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2077 - Cave goblin miner - He's working away. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2078 - Cave goblin miner - He's working away. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2079 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2080 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2081 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2082 - Sigmund - Advisor to the Duke of Lumbridge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2083 - Sigmund - Former advisor to the Duke of Lumbridge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2084 - Mistag - He looks like he's in charge of the miners. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2085 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2086 - Kazgar - He's standing guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2087 - Ur-tag - The ruler of the Dorgeshuun - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2088 - Duke Horacio - Duke Horacio of Lumbridge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2089 - Mistag - He looks like he's in charge of the miners. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2090 - Sigmund - Former adviser to the Duke of Lumbridge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2091 - Secretary - Task master. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2092 - Purple Pewter Secretary - The head secretary of the Purple Pewter mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2093 - Yellow Fortune Secretary - The head secretary of the Yellow Fortune mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2094 - Blue Opal Secretary - The head secretary of the Blue Opal mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2095 - Green Gemstone Secretary - The head secretary of the Green Gemstone mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2096 - White Chisel Secretary - The head secretary of the White Chisel mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2097 - Silver Cog Secretary - The head secretary of the Silver Cog mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2098 - Brown Engine Secretary - The head secretary of the Brown Engine mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2099 - Red Axe Secretary - The head secretary of the Red Axe mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2100 - Purple Pewter Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2101 - Blue Opal Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2102 - Yellow Fortune Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2103 - Green Gemstone Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2104 - White Chisel Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2105 - Silver Cog Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2106 - Brown Engine Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2107 - Red Axe Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2108 - Red Axe Cat - The cat belongs to the director of the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2109 - Trader - A trader for the Purple Pewter mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2110 - Trader - A trader for the Purple Pewter mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2111 - Trader - A trader for the Blue Opal mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2112 - Trader - A trader for the Blue Opal mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2113 - Trader - A trader for the Yellow Fortune mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2114 - Trader - A trader for the Yellow Fortune mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2115 - Trader - A trader for the Green Gemstone mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2116 - Trader - A trader for the Green Gemstone mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2117 - Trader - A trader for the White Chisel mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2118 - Trader - A trader for the White Chisel mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2119 - Trader - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2120 - Trader - A trader for the Silver Cog mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2121 - Trader - A trader for the Brown Engine mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2122 - Trader - A trader for the Brown Engine mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2123 - Null - A trader for the Red Axe mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2124 - Trader - A trader for the Red Axe mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2125 - Null - A trader for the Red Axe mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2126 - Trader - A trader for the Red Axe mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2127 - Trade Referee - He is regulating the flow of goods on the trade floor and maintaining order. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2128 - Supreme Commander - He is the Supreme Commander of all regiments of the Black Guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2129 - Commander Veldaban - Veldaban, Commander of the Black Guard in Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2130 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 48 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2131 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 48 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2132 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 48 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2133 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 48 - 1 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2134 - Black Guard Berserker - An elite member of the Black Guard. - 66 - 1 - true - false - false - false - 10 - 1 - 51 - 4000 - 422 - 404 - 2304 - 66 - 66 - 66 - 0 - - - 2135 - Black Guard Berserker - An elite member of the Black Guard. - 66 - 1 - true - false - false - false - 10 - 1 - 51 - 4000 - 422 - 404 - 2304 - 66 - 66 - 66 - 0 - - - 2136 - Black Guard Berserker - An elite member of the Black Guard. - 66 - 1 - true - false - false - false - 10 - 1 - 51 - 4000 - 422 - 404 - 2304 - 66 - 66 - 66 - 0 - - - 2137 - Gnome emissary - Apparantly negotiating some business with the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2138 - Gnome traveller - A gnome traveller, visiting Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2139 - Gnome traveller - A gnome traveller, visiting Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2140 - Dromund's cat - Very protective of his master... and his property. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2141 - Blasidar the sculptor - Makes sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2142 - Null - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2143 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2144 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2145 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2146 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2147 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2148 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2149 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2150 - Riki the sculptor's model - Models for sculptures. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2151 - Vigr - Proprietor of Vigr's Warhammers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2152 - Santiri - Proprietor of the Quality Weapons Shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2153 - Saro - Proprietor of the Quality Armour Shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2154 - Gunslik - Proprietor of Gunslik's Assorted Items. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2155 - Wemund - Looks like some kind of engineer or mechanic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2156 - Randivor - He's selling his bread on the market here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2157 - Hervi - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2158 - Nolar - A crafty dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2159 - Gulldamar - He has lots of silver on display. And only silver. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2160 - Tati - An old mining dwarf, now he sells pickaxes and generally acts grumpy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2161 - Agmundi - She seems to be doing rather well for herself, selling clothes in a palace shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2162 - Vermundi - A rather poor looking little dwarf, selling her clothes on the market. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2163 - Banker - A rather personable banker lady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2164 - Banker - A rather serious old fella. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2165 - Librarian - He takes care of the library and its many books. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2166 - Assistant - Library assistant, to be exact. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2167 - Customer - A customer looking for books. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2168 - Customer - Looks like a human traveler visiting the library. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2169 - Dromund - What an eccentric little fellow! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2170 - Rind the gardener - He tends to the plants in the palace garden. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2171 - Factory Manager - Looks after the factory. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2172 - Factory Worker - Works hard at whatever it is he does. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2173 - Factory Worker - Works hard at whatever it is he does. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2174 - Factory Worker - Works hard at whatever it is he does. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2175 - Factory Worker - Works hard at whatever it is he does. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2176 - Inn Keeper - A keeper of the Inn. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2177 - Inn Keeper - A rich landlord, fat and jolly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2178 - Barmaid - These Dwarf ladies are so attractive! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2179 - Barman - Makes a living off his tips I'm sure. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2180 - Cart conductor - He makes sure the carts don't run anyone over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2181 - Cart conductor - He makes sure the carts don't run anyone over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2182 - Cart conductor - He makes sure the carts don't run anyone over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2183 - Cart conductor - He makes sure the carts don't run anyone over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2184 - Cart conductor - He makes sure the carts don't run anyone over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2185 - Cart conductor - Remember don't drink and ride in mine carts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2186 - Cart conductor - Keeps the line clear of traffic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2187 - Rowdy dwarf - A loud, drunk and generally obnoxious dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2188 - Hegir - A bickering old dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2189 - Haera - A bickering old dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2190 - Runvastr - A sad old dwarf living in a sad old home. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2191 - Sune - He seems to always be busy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2192 - Bentamir - This dwarf doesn't seem to be very well off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2193 - Ulifed - A dwarf minding his own business. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2194 - Reinald - A seller of fine wrist-wear... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2195 - Karl - A short, merry guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2196 - Gauss - A beer drinking dwarf that is, for once, not totally drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2197 - Myndill - A dwarf, wandering the streets of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2198 - Kjut - His kebabs certainly smell delicious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2199 - Tombar - He seems very tall. For a dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2200 - Odmar - A dwarf, wandering around Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2201 - Audmann - He seems to be very well off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2202 - Null - He's had a fair bit to drink... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2203 - Drunken Dwarf - He's had a fair bit to drink... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2204 - Drunken Dwarf - He's had a fair bit to drink... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2205 - Dwarven Boatman - You cannot see his ship, but presumably he has one. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2206 - Dwarven Boatman - His ship miraculously survived the crash into the statue earlier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2207 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2208 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2209 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2210 - Dwarven Miner - He's delivered his ores. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2211 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2212 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2213 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2214 - Dwarven Miner - He's delivered his ores. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2215 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2216 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2217 - Dwarven Miner - He carries a heavy load. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2218 - Dwarven Miner - He's delivered his ores. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2219 - Purple Pewter Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2220 - Purple Pewter Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2221 - Blue Opal Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2222 - Yellow Fortune Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2223 - Green Gemstone Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2224 - White Chisel Director - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2225 - Silver Cog Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2226 - Brown Engine Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2227 - Red Axe Director - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2228 - Commander Veldaban - Veldaban, Commander of the Black Guard in Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2229 - Red Axe Cat - The cat belongs to the director of the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2230 - Red Axe Cat - The cat belongs to the director of the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2231 - Null - A dwarven enforcer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2232 - Black Guard Berserker - A dwarven enforcer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2233 - Olivia - She's a seed merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2234 - Master Farmer - A master at farming. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2235 - Master Farmer - A master at farming. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2236 - Market Guard - It's an NPC. - 20 - 1 - true - false - false - false - 10 - 3 - 22 - 4000 - 451 - 404 - 2304 - 28 - 28 - 28 - 28 - - - 2237 - Gee - A local farmer. He may be able to provide some useful information. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2238 - Donie - A local farmer. She may be able to provide some useful information. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2239 - Pig - Swine. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2240 - Pig - Porker. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2241 - Piglet - Hog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2242 - Piglet - Porcine. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2243 - Piglet - I shall call him, Mini Pig. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2244 - Varrock Guide - He provides new players with useful information. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2245 - Khazard trooper - It's one of General Khazard's warriors. - 19 - 1 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2246 - Khazard trooper - It's one of General Khazard's warriors. - 19 - 1 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2247 - Gnome troop - It's a tree gnome trooper. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2248 - Gnome troop - It's a tree gnome trooper. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2249 - Gnome - Like a mini man! - 3 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 2250 - Gnome - Like a mini man! - 1 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 2251 - Gnome - Like a mini man! - 3 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 2252 - Mounted terrorbird gnome - A farmer's enemy. - 49 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 2253 - Wise Old Man - A venerable and rich sage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2254 - Bed - It's a fairly ordinary bed, but... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2255 - Thing under the bed - It's just like that dream I use to have when I was little. - 0 - 2 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2256 - Paladin - A holy warrior. - 62 - 1 - true - false - false - false - 10 - 1 - 57 - 4000 - 422 - 404 - 2304 - 74 - 74 - 74 - 0 - - - 2257 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2258 - Mage of Zamorak - A disciple of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2259 - Mage of Zamorak - A disciple of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2260 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2261 - Mage of Zamorak - A disciple of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2262 - Dark mage - An initiate of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2263 - Abyssal leech - A blood-drinking denizen of the abyss. - 41 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2264 - Abyssal guardian - It seems to have eyes in the back of its head... - 59 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2265 - Abyssal walker - Apparently walks the abyss. - 81 - 1 - true - true - false - false - 10 - 1 - 95 - 4000 - 422 - 404 - 2304 - 123 - 123 - 123 - 0 - - - 2266 - Brian O'Richard - Head of the maze. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2267 - Rogue Guard - Roguelike and guardish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2268 - Rogue Guard - Roguelike and guardish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2269 - Rogue Guard - Roguelike and guardish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2270 - Martin Thwait - A loveable rogue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2271 - Emerald Benedict - A rich banker man... Some say too rich. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2272 - Spin Blades - I don't think I want to get too close to that! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2273 - Spin Blades - I don't think I want to get too close to that! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2274 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 422 - 404 - 2304 - 6 - 6 - 6 - 0 - - - 2275 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 422 - 404 - 2304 - 6 - 6 - 6 - 0 - - - 2276 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2277 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2278 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2279 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2280 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2281 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 0 - - - 2282 - Sir Spishyus - An observer for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2283 - Lady Table - An observer for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2284 - Sir Kuam Ferentse - An observer for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2285 - Sir Leye - A warrior blessed by Saradomin. - 20 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 2286 - Sir Tinley - An observer for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2287 - Sir Ren Itchood - An observer for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2288 - Miss Cheevers - An observer for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2289 - Ms. Hynn Terprett - An observer for the Temple Knights. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2290 - Sir Tiffy Cashien - Head of recruitment for the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2291 - Rug Merchant - A carpet merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2292 - Rug Merchant - A carpet merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2293 - Rug Merchant - A man who deals in rugs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2294 - Rug Merchant - A man who deals in rugs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2295 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2296 - Rug Merchant - A man who deals in rugs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2297 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2298 - Rug Merchant - A man who deals in rugs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2299 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2300 - Rug Station Attendant - A man who deals in rugs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2301 - Monkey - Perhaps our oldest relatives? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2302 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2303 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2304 - Sarah - She sells Farming equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2305 - Vanessa - She sells Farming equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2306 - Richard - He sells Farming equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2307 - Alice - She sells Farming equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2308 - Capt' Arnav - Distinctly piratical. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2309 - - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2310 - Cow calf - Young, but still beefy. - 2 - 1 - true - false - false - false - 10 - 1 - 6 - 4000 - 422 - 404 - 2304 - 7 - 7 - 7 - 0 - - - 2311 - Sheepdog - Farmer/sheep liaison officer. Go on - give the dog a bone! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2312 - Rooster - He rules the, er, roost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2313 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 2314 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 2315 - Chicken - Yep. Definitely a chicken. - 1 - 1 - true - false - true - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 2316 - Pig - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2317 - Pig - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2318 - Piglet - Hog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2319 - Piglet - Porcine. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2320 - Piglet - I shall call him, Mini Pig. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2321 - Blandebir - An expert on the brewing of ales and cider. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2322 - Metarialus - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2323 - Elstan - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2324 - Dantaera - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2325 - Kragen - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2326 - Lyra - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2327 - Francis - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2328 - Gardener - The hat is a dead give away. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2329 - Iago - Only the Grim Reaper would have a pet like this. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2330 - Garth - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2331 - Ellena - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2332 - Selena - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2333 - Vasquen - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2334 - Rhonen - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2335 - Dreven - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2336 - Taria - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2337 - Rhazien - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2338 - Torrell - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2339 - Alain - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2340 - Heskel - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2341 - Treznor - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2342 - Fayeth - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2343 - Bolongo - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2344 - Gileth - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2345 - Sick-looking sheep (1) - The sheep looks distinctly unwell and has a slight red tinge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2346 - Sick-looking sheep (2) - The sheep looks distinctly unwell and has a slight green tinge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2347 - Sick-looking sheep (3) - The sheep looks distinctly unwell and has a slight blue tinge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2348 - Sick-looking sheep (4) - The sheep looks distinctly unwell and has a slight yellow tinge. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2349 - Mourner - A mourner. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2350 - Mourner - A mourner. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2351 - Mourner - A mourner. - 11 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2352 - Eudav - Buys wholesale, sells retail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2353 - Oronwen - An elven Seamstress. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2354 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2355 - Banker - She can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2356 - Dalldav - Buys and sells bows. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2357 - Gethin - Looks like he knows his way around a kitchen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2358 - Arianwyn - An odd looking person. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2359 - Elf warrior - I don't wanna be at the wrong end of that pike. - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2360 - Elf warrior - I don't wanna be at the wrong end of that pike. - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2361 - Elf warrior - He looks pretty handy with that bow. - 90 - 1 - true - false - false - false - 10 - 1 - 105 - 4000 - 422 - 404 - 2304 - 136 - 136 - 136 - 0 - - - 2362 - Elf warrior - He looks pretty handy with that bow. - 90 - 1 - true - false - false - false - 10 - 1 - 105 - 4000 - 422 - 404 - 2304 - 136 - 136 - 136 - 0 - - - 2363 - Goreu - An elf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2364 - Ysgawyn - An elf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2365 - Arvel - An elf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2366 - Mawrth - An elf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2367 - Kelyn - An elf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2368 - Eoin - An elven child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2369 - Iona - An elven child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2370 - Null - A gnomic inventor - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2371 - Gnome - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2372 - Head mourner - A Mourner showing his true identity. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2373 - Mourner - A Mourner, or plague healer. - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2374 - Mourner - A Mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2375 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2376 - Eluned - Wow - the prettiest Elf I have ever seen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2377 - Sick-looking sheep (1) - This sheep is dyed red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2378 - Sick-looking sheep (2) - This sheep is dyed green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2379 - Sick-looking sheep (3) - This sheep is dyed blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2380 - Sick-looking sheep (4) - This sheep is dyed yellow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2381 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2382 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2383 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2384 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2385 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2386 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2387 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2388 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2389 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2390 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2391 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2392 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2393 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2394 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2395 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2396 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2397 - Mysterious ghost - Seems to flitter in and out of existence... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2398 - Mysterious ghost - Seems to flitter in and out of existence... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2399 - Mysterious ghost - Seems to flitter in and out of existence... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2400 - Mysterious ghost - Seems to flitter in and out of existence... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2401 - Mysterious ghost - Seems to flitter in and out of existence... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2402 - Mysterious ghost - Seems to flitter in and out of existence... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2403 - Null - The head secretary of the Red Axe mining company. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2404 - Null - One of the leaders of the business Consortium, a ruler of Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2405 - Null - The cat belongs to the director of the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2406 - Null - Apparantly negotiating some business with the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2407 - Null - A gnome traveller, visiting Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2408 - Null - A gnome traveller, visiting Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2409 - Cart conductor - He makes sure the carts don't run anyone over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2410 - Red Axe Director - Walking stick, spiky hair, twirly moustache. He's a villain alright. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2411 - Red Axe Director - Walking stick, spiky hair, twirly moustache. He's a villain alright. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2412 - Red Axe Henchman - That's one mean looking dwarf the Red Axe has employed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2413 - Red Axe Henchman - That's one mean looking dwarf the Red Axe has employed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2414 - Red Axe Henchman - That's one mean looking dwarf the Red Axe has employed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2415 - Colonel Grimsson - That's one mean looking dwarf the Red Axe has employed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2416 - Colonel Grimsson - That's one mean looking dwarf the Red Axe has employed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2417 - Ogre shaman - Seems intelligent... for an ogre. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2418 - Ogre shaman - Seems intelligent... for an ogre. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2419 - Grunsh - Seems intelligent... for an ogre. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2420 - Gnome emissary - Apparantly negotiating some business with the Red Axe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2421 - Gnome companion - The companion of the gnome emissary. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2422 - Gnome companion - The companion of the gnome emissary. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2423 - Chaos dwarf - A dwarf gone bad. - 48 - 1 - false - true - false - false - 10 - 1 - 61 - 4000 - 422 - 404 - 2304 - 79 - 79 - 79 - 0 - - - 2424 - Gunslik - Proprietor of Gunslik's Assorted Items. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2425 - Nolar - A crafty dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2426 - Factory Worker - Taking a break from work, presumably. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2427 - Cart conductor - Remember don't drink and ride in minecarts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2428 - Gauss - A beer drinking dwarf that is, for once, not totally drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2429 - Drunken Dwarf - He's had a fair bit to drink... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2430 - Rowdy dwarf - A loud, drunk and generally obnoxious dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2431 - Ulifed - A dwarf minding his own business. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2432 - Red Axe Henchman - A short, but extremely tough looking dwarf... - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2433 - Red Axe Henchman - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2434 - Ogre shaman - Seems intelligent... for an ogre. - 1 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2435 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2436 - Jarvald - A Fremennik raider. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2437 - Jarvald - A Fremennik raider. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2438 - Jarvald - A Fremennik raider. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2439 - Askeladden - Looks like a wanna be Fremennik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2440 - Door-support - This support is propping the door closed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2441 - Door - Without its support, it was no problem! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2442 - Door - Without its support, it was no problem! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2443 - Door-support - This support is propping the door closed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2444 - Door - This door seems to have a weak point. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2445 - Door - This door seems to have a weak point. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2446 - Door-support - This support is propping the door closed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2447 - Door - This door seems to have a weak point. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2448 - Door - This door seems to have a weak point. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2449 - Egg - I bet it's not made of chocolate... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2450 - Egg - Moving eggs are worrying... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2451 - Egg - I wonder what was inside it? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2452 - Giant Rock Crab - No one likes crabs... especially really big ones! - 137 - 2 - true - true - true - false - 10 - 1 - 240 - 4000 - 422 - 404 - 2304 - 312 - 312 - 312 - 0 - - - 2453 - Boulder - Heavy rock! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2454 - Dagannoth spawn - A teeny-tiny horror from the ocean depths... - 42 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2455 - Dagannoth - A darkened horror from the ocean depths... - 90 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2456 - Dagannoth - A spiney horror from the ocean depths... - 88 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2457 - Wallasalki - A fearsome magical water creature. - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2458 - Freaky Forester - He's at home in the forests. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2459 - Pheasant - A brightly coloured game bird. - 3 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 2371 - 2372 - 2373 - 6 - 6 - 6 - 0 - - - 2460 - Pheasant - A brightly coloured game bird. - 3 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 2371 - 2372 - 2373 - 6 - 6 - 6 - 0 - - - 2461 - Pheasant - A brightly coloured game bird. - 3 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 2371 - 2372 - 2373 - 6 - 6 - 6 - 0 - - - 2462 - Pheasant - A brightly coloured game bird. - 3 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 2371 - 2372 - 2373 - 6 - 6 - 6 - 0 - - - 2463 - Evil Chicken - He sells 'exotic' ingredients to the cave goblins. - 19 - 1 - true - false - false - false - 10 - 3 - 19 - 4000 - 2299 - 2300 - 2301 - 20 - 20 - 20 - 20 - - - 2464 - Evil Chicken - He sells 'exotic' ingredients to the cave goblins. - 38 - 1 - true - false - false - false - 10 - 5 - 40 - 4000 - 2299 - 2300 - 2301 - 40 - 40 - 40 - 40 - - - 2465 - Evil Chicken - She sells 'exotic' ingredients to the cave goblins. - 69 - 1 - true - false - false - false - 10 - 10 - 60 - 4000 - 2299 - 2300 - 2301 - 70 - 70 - 70 - 70 - - - 2466 - Evil Chicken - He sells 'exotic' ingredients to the cave goblins. - 81 - 1 - true - false - false - false - 10 - 10 - 80 - 4000 - 2299 - 2300 - 2301 - 80 - 80 - 80 - 80 - - - 2467 - Evil Chicken - She sells 'exotic' ingredients to the cave goblins. - 121 - 1 - true - false - false - false - 10 - 15 - 105 - 4000 - 2299 - 2300 - 2301 - 120 - 120 - 120 - 120 - - - 2468 - Evil Chicken - He sold poisoned ingredients to the cave goblins. - 159 - 1 - true - false - false - false - 10 - 21 - 120 - 4000 - 2299 - 2300 - 2301 - 160 - 160 - 160 - 160 - - - 2469 - Frog - He sold poisoned ingredients to the cave goblins. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2470 - Frog - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2471 - Frog - He sold poisoned ingredients to the cave goblins. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2472 - Frog - Speaks on behalf of the Royal Frog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2473 - Frog - He sold poisoned ingredients to the cave goblins. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2474 - Frog prince - What a handsome man! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2475 - Frog princess - What a nice dress! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2476 - Rick Turpentine - A retired highwayman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2477 - Quiz Master - Apparently a master of quizzes! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2478 - Evil Bob - Hey, it's Bob the cat! Or...is it? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2479 - Evil Bob - Hey, it's Bob the cat! Or...is it? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2480 - Servant - He sold poisoned ingredients to the cave goblins. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2481 - Servant - Servant of Evil Bob. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2482 - Giant bat - Annoying flappy thing. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2483 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2484 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2485 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2486 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2487 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2488 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2489 - Bush snake - A slithering serpent that likes to hide in the bush. - 35 - 1 - true - true - false - true - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 2490 - Bush snake - A slithering serpent that likes to hide in the bush. - 35 - 1 - true - true - false - true - 10 - 1 - 26 - 4000 - 422 - 404 - 2304 - 33 - 33 - 33 - 0 - - - 2491 - Jungle spider - A barely visible deadly jungle spider. - 44 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2492 - Jungle spider - It's an NPC. - 44 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2493 - Large mosquito - A flying bloodsucker. - 13 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2494 - Mosquito swarm - A swarm of three highly agile mosquitoes. - 17 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2495 - Mosquito swarm - A swarm of five highly agile mosquitoes. - 20 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2496 - Tribesman - A vicious warrior. - 32 - 1 - false - true - false - true - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2497 - Tribesman - A vicious warrior. - 32 - 1 - true - true - false - true - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2498 - Broodoo victim - An undead victim of some ancient murderous ritual; his skin appears deep green. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2499 - Broodoo victim - An undead victim of some ancient murderous ritual; his skin appears deep green. - 60 - 1 - true - true - false - false - 10 - 1 - 87 - 4000 - 422 - 404 - 2304 - 113 - 113 - 113 - 0 - - - 2500 - Broodoo victim - An undead victim of some ancient murderous ritual; his skin appears pale yellow. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2501 - Broodoo victim - An undead victim of some ancient murderous ritual; his skin appears pale yellow. - 60 - 1 - true - true - false - false - 10 - 1 - 87 - 4000 - 422 - 404 - 2304 - 113 - 113 - 113 - 0 - - - 2502 - Broodoo victim - An undead victim of some ancient murderous ritual; his skin is pale and drawn. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2503 - Broodoo victim - An undead victim of some ancient murderous ritual; his skin is pale and drawn. - 60 - 1 - true - true - false - false - 10 - 1 - 87 - 4000 - 422 - 404 - 2304 - 113 - 113 - 113 - 0 - - - 2504 - Null - A Tai Bwo Wannai villager. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2505 - Sharimika - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2506 - Sharimika - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2507 - Null - A Tai Bwo Wannai villager. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2508 - Mamma Bufetta - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2509 - Mamma Bufetta - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2510 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2511 - Layleen - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2512 - Layleen - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2513 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2514 - Karaday - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2515 - Karaday - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2516 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2517 - Safta Doc - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2518 - Safta Doc - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2519 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2520 - Gabooty - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2521 - Gabooty - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2522 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2523 - Fanellaman - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2524 - Fanellaman - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2525 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2526 - Jagbakoba - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2527 - Jagbakoba - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2528 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2529 - Murcaily - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2530 - Murcaily - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2531 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2532 - Rionasta - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2533 - Rionasta - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2534 - Mahogany - He sold poisoned ingredients to the cave goblins. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2535 - Teak - The most senior goblin cleric. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 309 - 312 - 313 - 0 - 0 - 0 - 0 - - - 2536 - Niles - The brother of Miles and Giles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2537 - Miles - The brother of Niles and Giles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2538 - Giles - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2539 - Cap'n Hand - He used to swashbuckle his way across the seven seas. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2540 - Dr Jekyll - He looks troubled. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2541 - Mr Hyde - The High Priest has been possessed. - 14 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2542 - Mr Hyde - Back from the dead...again? - 29 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2543 - Mr Hyde - Back from the dead...again? - 49 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2544 - Mr Hyde - Back from the dead...again? - 79 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2545 - Mr Hyde - Back from the dead, again? - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2546 - Mr Hyde - Back from the dead...again? - 159 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2547 - Dr Ford - A crazy, evil druid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2548 - Blackjack seller - A market stall keeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2549 - Ali the dyer - A colourful character. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2550 - Dwarven Miner - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2551 - Dwarven Miner - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2552 - Dwarven Miner - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2553 - Blast Furnace Foreman - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2554 - Tin ore - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2555 - Copper ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2556 - Iron ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2557 - Mithril ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2558 - Adamantite ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2559 - Runite ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2560 - Silver ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2561 - Gold ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2562 - Coal - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2563 - Perfect gold ore - Some ore going into the furnace. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2564 - Ordan - He smells of rock dust. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2565 - Jorzik - He buys stuff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2566 - Wise Old Man - A venerable sage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2567 - Wise Old Man - A venerable and rich sage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2568 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2569 - Banker - Good with money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2570 - Banker - Good with money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2571 - Market Guard - He guards the Draynor Market stalls from thieves. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2572 - Olivia - She's a seed merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2573 - Pillory Guard - A law enforcer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2574 - Bank guard - He's guarding the bank. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2575 - Purepker895 - A player. - 52 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2576 - Qutiedoll - A player. - 16 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2577 - 1337sp34kr - A player. - 63 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2578 - Elfinlocks - A player. - 87 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2579 - Cool Mom227 - A player. - 27 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2580 - Bernald - Looks after the Burthorpe vinery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2581 - Ellamaria - Queen Ellamaria of Varrock. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2582 - Trolley - This statue of Saradomin has been 'borrowed' for a while. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2583 - Trolley - This statue of a king has been 'borrowed' for a while. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2584 - Trolley - An empty trolley. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2585 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2586 - Billy, a guard of Falador - Somebody should have warned him when he signed up. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2587 - Bob, another guard of Falador - Shame his pension's going to waste. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2588 - Brother Althric - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2589 - PKMaster0036 - A master of the wilderness. - 87 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2590 - King Roald - Varrock's resident monarch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2591 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 13 - 10 - 4000 - 2613 - 2605 - 2607 - 130 - 130 - 130 - 130 - - - 2592 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 2612 - 2606 - 2607 - 13 - 13 - 13 - 0 - - - 2593 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 2612 - 2606 - 2607 - 13 - 13 - 13 - 0 - - - 2594 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 2609 - 2606 - 2607 - 13 - 13 - 13 - 0 - - - 2595 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 2609 - 2606 - 2607 - 13 - 13 - 13 - 0 - - - 2596 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 2609 - 2606 - 2608 - 13 - 13 - 13 - 0 - - - 2597 - TzHaar-Mej - Appears to be some kind of mystic. - 103 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 2612 - 2606 - 2607 - 13 - 13 - 13 - 0 - - - 2598 - TzHaar-Hur - Looks like a craftsman of some kind. - 74 - 1 - true - false - false - false - 10 - 9 - 80 - 4000 - 2610 - 2606 - 2608 - 104 - 104 - 104 - 104 - - - 2599 - TzHaar-Hur - Looks like a craftsman of some kind. - 74 - 1 - true - false - false - false - 10 - 1 - 80 - 4000 - 2609 - 2606 - 2607 - 104 - 104 - 104 - 0 - - - 2600 - TzHaar-Hur - Looks like a craftsman of some kind. - 74 - 1 - true - false - false - false - 10 - 1 - 80 - 4000 - 2609 - 2606 - 2607 - 104 - 104 - 104 - 0 - - - 2601 - TzHaar-Hur - Looks like a craftsman of some kind. - 74 - 1 - true - false - false - false - 10 - 1 - 80 - 4000 - 2609 - 2606 - 2607 - 104 - 104 - 104 - 0 - - - 2602 - TzHaar-Hur - Looks like a craftsman of some kind. - 74 - 1 - true - false - false - false - 10 - 1 - 80 - 4000 - 2609 - 2606 - 2607 - 104 - 104 - 104 - 0 - - - 2603 - TzHaar-Hur - Looks like a craftsman of some kind. - 74 - 1 - true - false - false - false - 10 - 1 - 80 - 4000 - 2609 - 2606 - 2607 - 104 - 104 - 104 - 0 - - - 2604 - TzHaar-Xil - Doesn't look very social. - 133 - 1 - true - false - false - false - 10 - 13 - 120 - 4000 - 2612 - 2605 - 2608 - 156 - 156 - 156 - 156 - - - 2605 - TzHaar-Xil - Doesn't look very social. - 133 - 1 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 2606 - TzHaar-Xil - Doesn't look very social. - 133 - 1 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 2607 - TzHaar-Xil - Doesn't look very social. - 133 - 1 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 2608 - TzHaar-Xil - It's an NPC. - 133 - 1 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 2609 - TzHaar-Xil - Doesn't look very social. - 133 - 1 - true - false - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 2610 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 15 - 140 - 4000 - 2610 - 2605 - 2307 - 182 - 182 - 182 - 182 - - - 2611 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 2612 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 2613 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 2614 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 2615 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 1 - 140 - 4000 - 2612 - 2606 - 2608 - 182 - 182 - 182 - 0 - - - 2616 - TzHaar-Ket - Must be a guard or something. - 149 - 1 - true - false - false - false - 10 - 1 - 140 - 4000 - 2612 - 2606 - 2608 - 182 - 182 - 182 - 0 - - - 2617 - TzHaar-Mej-Jal - Another one of those mystic-types. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2618 - TzHaar-Mej-Kah - Another one of those mystic-types. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2619 - TzHaar-Ket-Zuh - Maybe it'll guard my possessions. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2620 - TzHaar-Hur-Tel - Wonder what it's making. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2621 - Olaf Hradson - A soggy, smelly Fremennik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2622 - TzHaar-Hur-Lek - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2623 - TzHaar-Mej-Roh - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2624 - TzHaar-Ket - Must be a guard or something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2625 - TzHaar-Ket - Must be a guard or something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2626 - Rocks - Stoney! - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2627 - Tz-Kih - Hangs out in caves. - 22 - 1 - true - true - false - false - 10 - 4 - 10 - 4000 - 2621 - 2622 - 2620 - 13 - 13 - 13 - 0 - - - 2628 - Tz-Kih - Hangs out in caves. - 22 - 1 - true - true - false - false - 10 - 4 - 10 - 4000 - 2621 - 2622 - 2620 - 13 - 13 - 13 - 0 - - - 2629 - Tz-Kek - Looks like living lava... - 45 - 2 - true - true - false - false - 10 - 1 - 20 - 4000 - 2625 - 2626 - 2627 - 26 - 26 - 26 - 0 - - - 2630 - Tz-Kek - Looks like living lava... - 45 - 2 - true - true - false - false - 10 - 1 - 20 - 4000 - 2625 - 2626 - 2627 - 26 - 26 - 26 - 0 - - - 2631 - Tok-Xil - I don't like the look of those spines... - 90 - 3 - true - true - false - false - 10 - 1 - 40 - 4000 - 2628 - 2629 - 2630 - 52 - 52 - 52 - 0 - - - 2632 - Tok-Xil - I don't like the look of those spines... - 90 - 3 - true - true - false - false - 10 - 1 - 40 - 4000 - 2628 - 2629 - 2630 - 52 - 52 - 52 - 0 - - - 2633 - Wise Old Man - A venerable sage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2634 - Miss Schism - A busy-body who loves a bit of gossip. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2635 - Bob - The Jagex cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2636 - Bob - The Jagex cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2637 - Sphinx - An awe inspiring combination of a lady, a lion and an eagle. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2638 - Neite - A graceful feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2639 - Robert the Strong - A battle hardened hero. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2640 - Odysseus - Robert's beautiful panther. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2641 - Dragonkin - Creator of Dragons. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2642 - King Black Dragon - The biggest, meanest dragon around. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2643 - R4ng3rNo0b889 - A ranger. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2644 - Love Cats - Loving cats. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2645 - Love Cats - Loving cats. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2646 - Neite - A graceful feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2647 - Bob - The Jagex cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2648 - Beite - A special kitty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2649 - Gnome - She gnows where its gnat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2650 - Gnome - A gnome of sorts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2651 - Odysseus - Robert's beautiful panther. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2652 - Null - A graceful feline. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2653 - Neite - A graceful feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2654 - Null - Nice but dim. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2655 - Unferth - Nice but dim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2656 - Unferth - Nice but dim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2657 - Unferth - Nice but dim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2658 - Unferth - Nice but dim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2659 - Unferth - Nice but dim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2660 - Reldo - Reldo the librarian. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2661 - Reldo - Reldo the librarian. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2662 - Lazy cat - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2663 - Lazy cat - A friendly not so little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2664 - Lazy cat - A friendly not so little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2665 - Lazy cat - A friendly not so little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2666 - Lazy cat - A friendly not so little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2667 - Lazy cat - A friendly not so little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2668 - Wily cat - A friendly little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2669 - Wily cat - Wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2670 - Wily cat - Wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2671 - Wily cat - Wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2672 - Wily cat - Wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2673 - Wily cat - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2674 - Thief - Known for his light-fingered qualities. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 2675 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 2676 - Make-over mage - Master of the mystical make-over. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2677 - Highwayman - He holds up passers by. - 5 - 1 - true - true - true - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 2678 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2679 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2680 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2681 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 2682 - Rat - A popular dwarven delicacy. - 1 - 1 - true - false - true - false - 10 - 1 - 2 - 4000 - 2705 - 2706 - 2707 - 2 - 2 - 2 - 0 - - - 2683 - Hengel - A citizen of Rimmington. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2684 - Anja - A citizen of Rimmington. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2685 - Hobgoblin - An ugly, smelly creature. - 28 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 164 - 165 - 167 - 37 - 37 - 37 - 0 - - - 2686 - Hobgoblin - An ugly, smelly creature. - 28 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 164 - 165 - 167 - 37 - 37 - 37 - 0 - - - 2687 - Hobgoblin - An ugly, smelly creature. - 28 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 164 - 165 - 167 - 37 - 37 - 37 - 0 - - - 2688 - Hobgoblin - An ugly, smelly creature wielding a spear. - 28 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 163 - 165 - 167 - 37 - 37 - 37 - 0 - - - 2689 - Frog - Didn't the mage say this procedure was totally safe? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2690 - Jack Seagull - A salty seafarer. Needs a wash. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2691 - Longbow Ben - A strange man with a strange name. Probably a strange past, too. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2692 - Ahab - So what can one do with a drunken sailor? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2693 - Seagull - She quackers. - 2 - 1 - true - false - false - false - 10 - 1 - 6 - 4000 - 422 - 404 - 2304 - 7 - 7 - 7 - 0 - - - 2694 - Seagull - Mini quackers. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2695 - Pirate - Yarrr! Shiver me timbers! - 23 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 2696 - Thief - Known for his light-fingered qualities. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 2697 - Mugger - He doesn't look so happy now he's in jail. - 6 - 1 - true - true - true - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 2698 - Black knight - A dark-hearted knight. - 33 - 1 - true - true - false - false - 10 - 1 - 42 - 4000 - 422 - 404 - 2304 - 54 - 54 - 54 - 0 - - - 2699 - Guard - He's guarding the prison. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2700 - Guard - A prison guard. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2701 - Guard - It's an NPC. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2702 - Guard - A prison guard. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2703 - Guard - A prison guard. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 2704 - Guard - He's asleep. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2705 - Guard - Keeping an eye out for suspicious activity. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2706 - Crab - No one likes crabs... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2707 - Seagull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2708 - Seagull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2709 - Fire wizard - Caution HOT! - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 711 - 1834 - 836 - 32 - 32 - 32 - 0 - - - 2710 - Water wizard - Hydro-power! - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 711 - 1834 - 836 - 32 - 32 - 32 - 0 - - - 2711 - Earth wizard - His hands are covered in mud. At least, I hope that's mud. - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 711 - 1834 - 836 - 32 - 32 - 32 - 0 - - - 2712 - Air wizard - At least he looks solid enough to fight. - 13 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 711 - 1834 - 836 - 32 - 32 - 32 - 0 - - - 2713 - Malignius Mortifer - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2714 - Zombie - Dead man walking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2715 - Skeleton - Rattle dem bones. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2716 - Ghost - WoooOOOOoooo! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2717 - Skeleton mage - Dead, but still powerful. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2718 - Betty - She seems like a nice sort of person. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2719 - Grum - Loves his gold! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2720 - Gerrant - An expert on fishing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2721 - Wydin - Likes his food to be kept fresh. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2722 - Null - It looks like there might be fish swimming in the water. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2723 - Null - Back from the dead...again? - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2724 - Null - It looks like there might be fish swimming in the water. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2725 - Null - A wise barbarian, apparently. He still looks like a thug. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2726 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2727 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2728 - Monk of Entrana - Holy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2729 - Monk of Entrana - Holy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2730 - Monk of Entrana - Holy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2731 - Monk of Entrana - Holy looking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2732 - Master Crafter - He works in the Crafting Guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2733 - Master Crafter - He wanders around the Crafting Guild pretending to be working. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2734 - Tz-Kih - Hangs out in caves. - 22 - 1 - true - true - false - false - 10 - 4 - 10 - 4000 - 2621 - 2622 - 2620 - 13 - 13 - 13 - 0 - - - 2735 - Tz-Kih - Hangs out in caves. - 22 - 1 - true - true - false - false - 10 - 4 - 10 - 4000 - 2621 - 2622 - 2620 - 13 - 13 - 13 - 0 - - - 2736 - Tz-Kek - Looks like living lava... - 45 - 2 - true - true - false - false - 10 - 7 - 20 - 4000 - 2625 - 2626 - 2627 - 26 - 26 - 26 - 0 - - - 2737 - Tz-Kek - Looks like living lava... - 45 - 2 - true - true - false - false - 10 - 7 - 20 - 4000 - 2625 - 2626 - 2627 - 26 - 26 - 26 - 0 - - - 2738 - Tz-Kek - Looks like living lava... - 22 - 1 - true - true - false - false - 10 - 4 - 10 - 4000 - 2625 - 2626 - 2627 - 13 - 13 - 13 - 0 - - - 2739 - Tok-Xil - I don't like the look of those spines... - 90 - 3 - true - true - false - false - 10 - 14 - 40 - 4000 - 2628 - 2629 - 2630 - 52 - 52 - 52 - 0 - - - 2740 - Tok-Xil - I don't like the look of those spines... - 90 - 3 - true - true - false - false - 10 - 14 - 40 - 4000 - 2628 - 2629 - 2630 - 52 - 52 - 52 - 0 - - - 2741 - Yt-MejKot - Holy reptile... - 180 - 4 - true - true - false - false - 10 - 25 - 80 - 4000 - 2637 - 2635 - 2638 - 104 - 104 - 104 - 0 - - - 2742 - Yt-MejKot - Holy reptile... - 180 - 4 - true - true - false - false - 10 - 25 - 80 - 4000 - 2637 - 2635 - 2638 - 104 - 104 - 104 - 0 - - - 2743 - Ket-Zek - That's one hot dog! - 360 - 5 - true - true - false - false - 10 - 49 - 160 - 4000 - 2644 - 2645 - 2646 - 208 - 208 - 208 - 0 - - - 2744 - Ket-Zek - That's one hot dog! - 360 - 5 - true - true - false - false - 10 - 49 - 160 - 4000 - 2644 - 2645 - 2646 - 208 - 208 - 208 - 0 - - - 2745 - TzTok-Jad - This is going to hurt... - 702 - 5 - true - true - false - false - 10 - 94 - 250 - 3000 - 2655 - 2653 - 2654 - 325 - 325 - 325 - 0 - - - 2746 - Yt-HurKot - Mini menace. - 108 - 1 - true - false - false - false - 10 - 14 - 60 - 4000 - 422 - 404 - 2304 - 50 - 50 - 50 - 10 - - - 2747 - Solus Dellagar - A powerful warrior mage. - 0 - 1 - false - false - false - false - 10 - 0 - 40 - 0 - 0 - 0 - 0 - 52 - 52 - 52 - 0 - - - 2748 - Savant - Assigned to help tracking down Solus Dellagar. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2749 - Lord Daquarius - Wears a stylish suit of armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2750 - Solus Dellagar - A powerful warrior mage. - 0 - 1 - false - false - false - false - 10 - 0 - 40 - 0 - 0 - 0 - 0 - 52 - 52 - 52 - 0 - - - 2751 - Black Knight - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2752 - Lord Daquarius - Wears a stylish suit of armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2753 - Mage of Zamorak - A disciple of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2754 - Mage of Zamorak - A disciple of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2755 - Mage of Zamorak - A disciple of Zamorak. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2756 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2757 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2758 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2759 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2760 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2761 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2762 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2763 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2764 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2765 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2766 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2767 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2768 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2769 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2770 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2771 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2772 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2773 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2774 - Null - An infamous mage - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2775 - Null - One of Wildy's many citizens. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2776 - Woman - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2777 - Black Knight - A dark-hearted knight. - 32 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2778 - Black Knight - A dark-hearted knight. - 32 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2779 - Ranger - A Ranger of the Temple Knights. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2780 - Solus Dellagar - A powerful warrior mage. - 0 - 1 - true - false - false - false - 10 - 0 - 40 - 0 - 0 - 0 - 0 - 52 - 52 - 52 - 0 - - - 2781 - Gnome guard - A tree gnome guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2782 - Shadow - A shadow. - 73 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 2783 - Dark beast - From a darker dimension. - 182 - 3 - true - true - false - false - 10 - 1 - 220 - 4000 - 422 - 404 - 2304 - 286 - 286 - 286 - 0 - - - 2784 - Mourner - A mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2785 - Slave - Digging. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2786 - Slave - Digging. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2787 - Slave - Confused. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2788 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2789 - Thorgel - A short angry guy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2790 - Sergeant Damien - Drill Sergeant from heck! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2791 - Pillory Guard - A law enforcer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2792 - Tramp - A man down on his luck. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2793 - Tramp - A man down on his luck. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2794 - Tramp - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2795 - Null - A man down on his luck. - 48 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2796 - Skippy - He looks angry and smells drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2797 - Skippy - Like a regular Skippy, just damper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2798 - Skippy - Skippy, just looking a little 'tender'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2799 - Skippy - He seems a lot less angry and smells a great deal fresher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2800 - A pile of broken glass - It looks like some broken bottles - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2801 - Mogre - Big, ugly, and smelly. - 60 - 2 - true - true - false - false - 10 - 1 - 48 - 4000 - 422 - 404 - 2304 - 62 - 62 - 62 - 0 - - - 2802 - Coach - They just call him 'Coach'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2803 - Lizard - Run away, it's massive! - 42 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2804 - Desert Lizard - A cold-blooded creature, partial to warmth. - 24 - 2 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 2805 - Desert Lizard - A cold-blooded creature, partial to warmth. - 24 - 2 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 2806 - Desert Lizard - A cold-blooded creature, partial to warmth. - 24 - 2 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 2807 - Small Lizard - A small cold-blooded creature, partial to warmth. - 12 - 1 - true - false - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 2808 - Small Lizard - A small cold-blooded creature, partial to warmth. - 12 - 1 - true - false - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 2809 - Al the Camel - A camel who has the soul of a poet. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2810 - Elly the Camel - A camel whose love is unrequited. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2811 - Ollie the Camel - A camel who wants to fly some day. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2812 - Cam the Camel - A camel who likes to rest. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2813 - Null - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2814 - Alice the Camel - A camel who's come from the south. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2815 - Neferti the Camel - A camel who wants to see the world. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2816 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2817 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2818 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2819 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2820 - Ali the Smith - One of Ali Morrisane's associates. Has a big hammer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2821 - Ali the Farmer - One of Ali Morrisane's associates. Carries a rake. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2822 - Ali the Tailor - One of Ali Morrisane's associates. Those scissors look sharp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2823 - Ali the Guard - One of Ali Morrisane's associates. Looks like he's seen a lot of fighting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2824 - Ellis - Manufacturer of fine leathers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2825 - Pirate Pete - A shifty-looking character. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2826 - Pirate Pete - A shifty-looking character. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2827 - Captain Braindeath - A shabby-looking leader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2828 - 50% Luke - Most of an angry, undead sea scoundrel. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2829 - Davey - Looks like he's taking a break. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2830 - Captain Donnie - I wonder if it was all the 'rum' that pickled him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2831 - Zombie protester - Sticking it to 'The Man'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2832 - Zombie protester - Sticking it to 'The Man'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2833 - Zombie protester - Sticking it to 'The Man'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2834 - Zombie protester - Sticking it to 'The Man'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2835 - Zombie protester - Sticking it to 'The Man'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2836 - Zombie protester - Sticking it to 'The Man'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2837 - Zombie pirate - An undead sea scoundrel. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 2838 - Zombie pirate - An undead sea scoundrel. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 2839 - Zombie pirate - An undead sea scoundrel. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 2840 - Zombie pirate - An undead sea scoundrel. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 2841 - Zombie pirate - An undead sea scoundrel. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 2842 - Zombie pirate - An undead sea scoundrel. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 2843 - Zombie swab - He talks a good fight. - 55 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2844 - Zombie swab - He talks a good fight. - 55 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2845 - Zombie swab - He talks a good fight. - 55 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2846 - Zombie swab - He talks a good fight. - 55 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2847 - Zombie swab - He talks a good fight. - 55 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2848 - Zombie swab - He talks a good fight. - 55 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 2849 - Evil spirit - The pun was intended. - 150 - 2 - true - true - false - false - 10 - 1 - 90 - 4000 - 422 - 404 - 2304 - 117 - 117 - 117 - 0 - - - 2850 - Fever spider - A bunch of legs, eyes and teeth. - 49 - 2 - true - false - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 2851 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2852 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2853 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2854 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2855 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2856 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2857 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2858 - Brewer - A worker in the brewery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2859 - Fishing spot - It looks like there might be squid swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2860 - Karamthulhu - Perhaps this gardener might look after your crops for you. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2861 - Karamthulhu - Looks after your Farming tools. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2862 - Death - Do not fear the Reaper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2863 - Zombie - A zombie. He looks pretty dead. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2864 - Most of a Zombie - Legs 11, good at bingo but bad at doing handstands. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2865 - Most of a Zombie - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2866 - Zombie - A zombie, with a bit of a bald spot. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2867 - Most of a Zombie - A zombie, with a major bald spot! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2868 - Zombie Head - I bet I could grab that... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2869 - Zombie - A zombie, he could probably do with a bath. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2870 - Half-Zombie - Half the man he used to be. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2871 - Other Half-Zombie - Clearly someones better half. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2872 - Child - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2873 - Child - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2874 - Child - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2875 - Child - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2876 - Child - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2877 - Child - One of Wildy's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2878 - Zombie - A zombie, he could probably do with a bath. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2879 - Bardur - A Fremennik warrior, hard at work. - 94 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2880 - Dagannoth fledgeling - A knee-high horror from the ocean depths... - 70 - 2 - true - false - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 2881 - Dagannoth Supreme - The dagannoth king responsible for the death of the Bukalla. - 303 - 3 - true - false - false - false - 60 - 1 - 255 - 5000 - 2853 - 2852 - 2856 - 331 - 331 - 331 - 0 - - - 2882 - Dagannoth Prime - A legendary dagannoth king, rumoured to fly on the North winds. - 303 - 3 - true - true - false - false - 10 - 1 - 255 - 4000 - 2853 - 2852 - 2856 - 331 - 331 - 331 - 0 - - - 2883 - Dagannoth Rex - Firstborn of the legendary dagannoth kings. - 303 - 3 - true - true - false - false - 10 - 1 - 255 - 4000 - 2853 - 2852 - 2856 - 331 - 331 - 331 - 0 - - - 2884 - Wallasalki - A fearsome magical water creature. - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2885 - Giant Rock Crab - No one likes crabs... especially really big ones! - 137 - 2 - true - true - true - false - 10 - 1 - 240 - 4000 - 422 - 404 - 2304 - 312 - 312 - 312 - 0 - - - 2886 - Boulder - Heavy rock! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2887 - Dagannoth - A spiney horror from the ocean depths... - 88 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2888 - Dagannoth - A darkened horror from the ocean depths... - 90 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2889 - Rock lobster - It wasn't a rock... it was a rock lobster! - 127 - 2 - true - false - false - false - 10 - 1 - 150 - 4000 - 422 - 404 - 2304 - 195 - 195 - 195 - 0 - - - 2890 - Rock - A Rock. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2891 - Suspicious water - If I didn't know better, I'd swear there's something in there... - 34 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2892 - Spinolyp - A sneaky, spiny, subterranean sea-dwelling scamp. - 76 - 1 - true - true - false - true - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 2893 - Suspicious water - If I didn't know better, I'd swear there's something in there... - 34 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2894 - Spinolyp - A sneaky, spiny, subterranean sea-dwelling scamp. - 76 - 1 - true - true - false - true - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 2895 - Suspicious water - If I didn't know better, I'd swear there's something in there... - 34 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2896 - Spinolyp - A sneaky, spiny, subterranean sea-dwelling scamp. - 76 - 1 - true - true - false - true - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 2897 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2898 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2899 - Father Reen - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2900 - Father Reen - Looks a bit lost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2901 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2902 - Father Badden - He looks very pious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2903 - Father Badden - He looks very pious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2904 - Denath - A practicer of dark arts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2905 - Denath - A practicer of dark arts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2906 - Eric - He looks nervous. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2907 - Eric - He looks nervous. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2908 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2909 - Evil Dave - He seems to like wearing black. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2910 - Evil Dave - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2911 - Matthew - He looks confused. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2912 - Matthew - He looks confused. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2913 - Jennifer - She looks enigmatic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2914 - Jennifer - She looks enigmatic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2915 - Tanya - She looks scary. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2916 - Tanya - She looks scary. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2917 - Patrick - He looks enthusiastic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2918 - Patrick - He looks enthusiastic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2919 - Agrith Naar - A summoned demon. - 100 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2920 - Null - It's an NPC. - 1 - 3 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2921 - Sand storm - A nasty sand storm. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2922 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2923 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2924 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2925 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2926 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2927 - Clay golem - An animated clay statue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2928 - Clay golem - An animated clay statue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2929 - Null - It's an NPC. - 2 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2930 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2931 - Ghost - Eeek! A ghost! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2932 - Jorral - A sensible looking man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2933 - Null - Sullen looking Ghost Woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2934 - Melina - Sullen looking Ghost Woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2935 - Melina - Sullen looking Ghost Woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2936 - Null - Not a happy ghost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2937 - Droalak - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2938 - Droalak - Not a happy ghost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2939 - Dron - He looks scary. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2940 - Blanin - A docile warrior - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2941 - The Beast - Who ate all the rats? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2942 - Bellemorde - Unkempt and a bit smelly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2943 - Pox - Not the healthiest cat you've ever seen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2944 - Pox - Busy hunting rats. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2945 - Bones - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2946 - Grimesquit - Cracking personality. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2947 - Phingspet - Lovely girl, shame about the smell. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2948 - Hooknosed Jack - Obviously punches above his weight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2949 - Jimmy Dazzler - Looks rich like an actor of sorts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2950 - The Face - Once beautiful, now repugnant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2951 - Felkrash - What is she looking at? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2952 - Smokin' Joe - What is he? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2953 - Ceril Carnillean - Head of the Carnillean household. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2954 - Councillor Halgrive - An official of Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2955 - Spice seller - Has a very exotic aroma about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2956 - Fur trader - Knows how to keep warm in the winter. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2957 - Gem merchant - Seems very well off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2958 - Silver merchant - Looks fairly well fed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2959 - Silk merchant - Seems very well off. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2960 - Zenesha - Sells top quality plate mail armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2961 - Ali Morrisane - A bazaar merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2962 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2963 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2964 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2965 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2966 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2967 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2968 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2969 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2970 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2971 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2972 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2973 - Guard - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2974 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2975 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2976 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2977 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2978 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2979 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 2980 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2981 - Rat - A popular dwarven delicacy. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2982 - King rat - The master of all rats. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2983 - Turbogroomer - Poorly named for such a scraggly cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2984 - Pusskins - Not a soft touch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2985 - Loki - A tricky bag of troublesome fluff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2986 - Captain Tom - A not-so friendly, not-so little cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2987 - Treacle - A sticky character. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2988 - Mittens - A fully grown feline. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2989 - Claude - Great set of mits for a young one. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2990 - Topsy - Cute and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2991 - Rauborn - Barman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2992 - Vaeringk - Black Guard off duty, I hope. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2993 - Oxi - The rat keeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2994 - Fior - Happy not to be working. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2995 - Sagira - Well tanned for someone who lives under a mountain. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2996 - Anleif - Prim and proper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2997 - Gertrude's cat - A friendly feline? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2998 - Gambler - Very well to do. I wonder what he's doing here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 2999 - Gambler - He has a tortured look in his eye. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3000 - Barman - Definitely overworked. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3001 - Gambler - Rich. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3002 - Gambler - Poor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3003 - Gambler - Poor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3004 - Gambler - Poor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3005 - Gambler - Poor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3006 - Gambler - Poor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3007 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3008 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3009 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3010 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3011 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3012 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3013 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3014 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3015 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3016 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3017 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3018 - Rat - A popular dwarven delicacy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3019 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3020 - Rug Merchant - A carpet merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3021 - Tool Leprechaun - Looks after your Farming tools. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3022 - Genie - Phenomenal cosmic powers, itty-bitty living space. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3023 - Nirrie - An elemental waterspirit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3024 - Tirrie - An elemental waterspirit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3025 - Hallak - An elemental waterspirit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3026 - Black golem - An animated clay statue. - 75 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 3027 - White golem - An animated clay statue. - 75 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 3028 - Grey golem - An animated clay statue. - 75 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 3029 - Ghaslor the Elder - The oldest man in Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3030 - Ali the Carter - A water salesman from Pollnivneach. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3031 - Usi - A citizen of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3032 - Nkuku - A citizen of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3033 - Garai - A citizen of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3034 - Habibah - A citizen of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3035 - Meskhenet - A citizen of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3036 - Zahra - A citizen of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3037 - Zahur - A herbalist... sells herbs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3038 - Seddu - An armour merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3039 - Kazemde - A seller of many things. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3040 - Awusah the Mayor - The Mayor of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3041 - Tarik - The mayor's guard. - 21 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3042 - Poltenip - The mayor's guard. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3043 - Radat - The mayor's guard. - 21 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3044 - Shiratti the Custodian - Custodian of the shrine to Elidinis. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3045 - Rokuh - A seller of tasty choc ices. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3046 - Nardah Banker - A banker of Nardah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3047 - Target - Needs to be shot with a ranged weapon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3048 - Target - Needs to be shot with a bow and arrow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3049 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3050 - Larxus - Not the smartest of butlers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3051 - Mystery figure - A mysterious watcher... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3052 - Mystery figure - A mysterious watcher... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3053 - Mystery figure - A mysterious watcher... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3054 - Mystery figure - A mysterious watcher... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3055 - Mystery figure - A mysterious watcher... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3056 - Mystery figure - A mysterious watcher... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3057 - Earth Warrior Champion - Champion of the earth warriors. - 102 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3058 - Giant Champion - Champion of the giants. - 56 - 2 - true - true - false - false - 10 - 1 - 56 - 4000 - 422 - 404 - 2304 - 72 - 72 - 72 - 0 - - - 3059 - Ghoul Champion - Champion of the ghouls. - 85 - 1 - true - true - false - false - 10 - 1 - 53 - 4000 - 422 - 404 - 2304 - 68 - 68 - 68 - 0 - - - 3060 - Goblin Champion - Champion of the goblins. - 24 - 1 - true - true - false - false - 10 - 1 - 32 - 4000 - 309 - 312 - 313 - 41 - 41 - 41 - 0 - - - 3061 - Hobgoblin Champion - Champion of the hobgoblins. - 56 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3062 - Imp Champion - Champion of the imps. - 14 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 3063 - Jogre Champion - Champion of the jogres. - 107 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3064 - Lesser Demon Champion - Champion of the lesser demons. - 162 - 2 - true - true - false - false - 10 - 1 - 114 - 4000 - 422 - 404 - 2304 - 148 - 148 - 148 - 0 - - - 3065 - Skeleton Champion - Champion of the skeletons. - 40 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 3066 - Zombies Champion - Champion of the zombies. - 51 - 2 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3067 - Leon d'Cour - Champion of Champions! - 141 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3068 - Skeletal Wyvern - A very dangerous pile of animated wyvern bones. - 140 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3069 - Skeletal Wyvern - A very dangerous pile of animated wyvern bones. - 140 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3070 - Skeletal Wyvern - A very dangerous pile of animated wyvern bones. - 140 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3071 - Skeletal Wyvern - A very dangerous pile of animated wyvern bones. - 140 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3072 - Ice giant - He's got icicles in his beard. - 53 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3073 - Ice warrior - A cold-hearted elemental warrior. - 57 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 3074 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3075 - Illegal Monk - One of the illegal bretheren of Wildy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3076 - Null - It's an NPC. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3077 - Dead Monk - A recently deceased follower of Saradomin. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3078 - High Priest - High Priest of Entrana. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3079 - Monk - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3080 - Monk - A holy man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3081 - Assassin - A stealthy assassin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3082 - Rosie - An effervescent elfin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3083 - Sorcha - Seriously sprightly even for a sprite. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3084 - Cait - A frenzied fey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3085 - Cormac - Too volatile for his own good. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3086 - Fionn - One of Diango's itinerant pixies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3087 - Donnacha - One of Diango's itinerant pixies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3088 - Ronan - One of Diango's itinerant pixies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3089 - - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3090 - - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3091 - - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3092 - Hooded Stranger - A strange hooded... stranger? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3093 - Null - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3094 - Flying Book - The book moves by itself! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3095 - Flying Book - The book moves by itself! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3096 - Pizzaz Hat - A talking Hat! - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3097 - Entrance Guardian - A guardian of the arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3098 - Telekinetic Guardian - A guardian of the arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3099 - Alchemy Guardian - A guardian of the arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3100 - Enchantment Guardian - A guardian of the arena. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3101 - Graveyard Guardian - A guardian of the arena. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3102 - Maze Guardian - A guardian of the arena. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3103 - Rewards Guardian - A guardian of the arena. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3104 - Charmed Warrior - Equipment that moves by itself! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3105 - Charmed Warrior - Equipment that moves by itself! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3106 - Charmed Warrior - Equipment that moves by itself! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3107 - Charmed Warrior - Equipment that moves by itself! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3108 - Bert - Bert seems to be covered in sand from head to toe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3109 - Guard Captain - This guard looks rather drunk and has beer stains down his armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3110 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3111 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3112 - Sandy - Angry and stressed, he doesn't seem to have time for anything other than sand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3113 - Sandy - He seems to be distracted, looking out of the window at something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3114 - Mazion - Mazion seems to be covered in sand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3115 - Blaec - Blaec seems to be covered in sand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3116 - Reeso - Reeso seems to be covered in sand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3117 - Sandwich lady - Back from the dead...again? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3118 - Prison Pete - He wants to escape! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3119 - Balloon Animal - It looks like an animal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3120 - Balloon Animal - It looks like an animal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3121 - Balloon Animal - It looks like an animal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3122 - Balloon Animal - It looks like an animal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3123 - Simon Templeton - He looks like he's seen the inside of a few tombs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3124 - Pyramid block - A pyramid block. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3125 - Pyramid block - A pyramid block. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3126 - Pentyn - He's been trapped here for thousands of years. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3127 - Aristarchus - A travelling scholar from Menaphos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3128 - Null - It's an NPC. - 13 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3129 - Boneguard - A spirit is trapped within it. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3130 - Pile of bones - These used to be alive. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3131 - Desert Spirit - It was trapped inside the boneguard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3132 - Null - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3133 - Crust of ice - Very thick, and very cold. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3134 - Null - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3135 - Furnace grate - It seems to be blocked. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3136 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3137 - Enakhra - A mysterious hooded woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3138 - Enakhra - Who - or what - is she? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3139 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3140 - Boneguard - A spirit is trapped within it. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3141 - Akthanakos - He's been freed from the boneguard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3142 - Akthanakos - Just who is he, anyway? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3143 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3144 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3145 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3146 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3147 - Lazim - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3148 - Enakhra - A mysterious hooded woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3149 - Akthanakos - A man with the head of a camel. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3150 - Knight - He's wearing heavy armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3151 - Skeleton - Could do with gaining a few pounds. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3152 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3153 - Harpie Bug Swarm - A swarm of bugs. - 46 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 3154 - Count Draynor - Stop looking and run! - 34 - 2 - false - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3155 - Bill Teach - Bill Teach the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3156 - Bill Teach - Bill Teach the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3157 - Bill Teach - Bill Teach the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3158 - Bill Teach - Bill Teach the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3159 - Bill Teach - Bill Teach the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3160 - Bill Teach - Bill Teach the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3161 - Charley - 'Two Feet' Charley. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3162 - Smith - Smithing Smith. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3163 - Joe - Harpoon Joe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3164 - Mama - Mama La'Fiette. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3165 - Mama - Mama La'Fiette. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3166 - Mike - Dodgy Mike. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3167 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3168 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3169 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3170 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3171 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3172 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3173 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3174 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3175 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3176 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3177 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3178 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3179 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3180 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3181 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3182 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3183 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3184 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3185 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3186 - Pirate - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3187 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3188 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3189 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3190 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3191 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3192 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3193 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3194 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3195 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3196 - Pirate - An enemy pirate. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3197 - Gull - A sea bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3198 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3199 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3200 - Chaos Elemental - pUre A cHaOs of crEatuRe! - 305 - 3 - true - true - false - false - 10 - 1 - 250 - 4000 - 422 - 404 - 2304 - 325 - 325 - 325 - 0 - - - 3201 - Killerwatt - It's an NPC. - 55 - 1 - true - false - false - false - 10 - 1 - 51 - 4000 - 422 - 404 - 2304 - 66 - 66 - 66 - 0 - - - 3202 - Killerwatt - A ball of electrical energy. - 55 - 1 - true - false - false - false - 10 - 1 - 51 - 4000 - 422 - 404 - 2304 - 66 - 66 - 66 - 0 - - - 3203 - Storm Cloud - A very small storm! - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3204 - Storm Cloud - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3205 - Romily Weaklax - A family baker, from the North. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3206 - Priest - A cave-goblin sniper! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3207 - Pious Pete - Back from the dead...again? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3208 - Taper - Back from the dead...again? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3209 - Elena - She looks concerned. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3210 - Alrena - She looks concerned. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3211 - Alrena - She looks concerned. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3212 - Bravek - The city warder of West Ardougne. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3213 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3214 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3215 - Elena - She doesn't look too happy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3216 - Mourner - A mourner, or plague healer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3217 - Kaylee - Works in the Rising Sun. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3218 - Tina - Works in the Rising Sun. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3219 - Dwarf - Loves mining. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3220 - Dwarf - Loves mining. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3221 - Dwarf - Loves mining. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3222 - Drunken man - One of Wildy's many citizens, currently incapacitated by alcohol. - 3 - 1 - true - false - true - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3223 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3224 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3225 - Man - One of Wildy's many citizens. He looks worried about something. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3226 - Woman - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3227 - Woman - One of Wildy's many citizens. She looks rich. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3228 - Guard - He tries to keep order around here. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3229 - Guard - He tries to keep order around here. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3230 - Guard - He tries to keep order around here. - 19 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3231 - Guard - He tries to keep order around here. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3232 - Guard - Keeping an eye out for threats to the city. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3233 - Guard - Keeping an eye out for threats to the city. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3234 - Gardener - An old gardener. - 3 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3235 - Apprentice workman - He's learning a trade. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3236 - Workman - A busy workman - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3237 - 'Cuffs' - He looks a bit dodgy. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3238 - Narf - Looks unpleasant. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3239 - Rusty - Seems to be loitering. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3240 - Jeff - Untrustworthy. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3241 - Guard - He's keeping an eye out. - 19 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3242 - Dark wizard - A practicer of dark arts. - 23 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 3243 - Dark wizard - A practicer of dark arts. - 22 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 3244 - Dark wizard - A practicer of dark arts. - 11 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 3245 - Dark wizard - A practicer of dark arts. - 11 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 3246 - Barbarian - Alberich, a fierce barbarian warrior. - 17 - 1 - true - false - false - false - 10 - 3 - 24 - 7000 - 2067 - 1666 - 2304 - 31 - 31 - 31 - 31 - - - 3247 - Barbarian - Fafner, a tough barbarian warrior. - 10 - 1 - true - false - false - false - 10 - 2 - 18 - 7000 - 406 - 410 - 2304 - 23 - 23 - 23 - 23 - - - 3248 - Barbarian - Fasolt, a strong barbarian warrior. - 17 - 1 - true - false - false - false - 10 - 3 - 24 - 7000 - 2067 - 1666 - 2304 - 31 - 31 - 31 - 31 - - - 3249 - Barbarian - Siegmund, a guard in the Barbarian Village. - 17 - 1 - true - false - false - false - 10 - 3 - 24 - 7000 - 407 - 410 - 2304 - 31 - 31 - 31 - 31 - - - 3250 - Barbarian - Siegfried, a young guard in the Barbarian Village. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3251 - Barbarian - Lydspor, a well-travelled barbarian warrior. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3252 - Barbarian - Hagen, a guard in the Barbarian Village. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3253 - Barbarian - Minarch, a barbarian who likes his beer. - 17 - 1 - true - false - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 3254 - Hunding - Likes a good fight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3255 - Barbarian - Wotan, a sturdy barbarian warrior. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3256 - Barbarian - Acelin, a guard in the Barbarian Village. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3257 - Barbarian - Adelino, a barbarian warrior with a big axe. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3258 - Barbarian - Adolpho, a barbarian warrior with a warhammer. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3259 - Barbarian - Aitan, a barbarian archer. - 15 - 1 - true - false - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 3260 - Barbarian - Brunnhilde, a fierce barbarian warrior. - 17 - 1 - true - false - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 3261 - Barbarian - Gutrune, a mighty barbarian warrior. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3262 - Barbarian - It's an NPC. - 10 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3263 - Barbarian - Sieglinde, a muscular barbarian warrior. - 9 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 3264 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 3265 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 3266 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 3267 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 3268 - Dwarf - A dwarven worker. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3269 - Dwarf - A dwarven worker. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3270 - Dwarf - A dwarven worker. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3271 - Dwarf - A dwarven worker. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3272 - Dwarf - A dwarven worker. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3273 - Dwarf - A dwarven worker. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3274 - Dwarf - A dwarven worker. - 11 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 3275 - Dwarf - A dwarven worker. - 7 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3276 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 3277 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 3278 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 3279 - Black Guard - A member of the Black Guard, a special division of the dwarven army. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 3280 - Engineering assistant - He looks busy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3281 - Engineering assistant - He's wandering around aimlessly with a box of spare parts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3282 - Engineer - He's building a cannon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3283 - Squirrel - Bushy tail! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3284 - Squirrel - Likes nuts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3285 - Squirrel - Shave the tail, and you've got a rat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3286 - Raccoon - A raccoon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3287 - Raccoon - A raccoon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3288 - Raccoon - A raccoon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3289 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3290 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3291 - Skeleton - It's an NPC. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 3292 - Witch - Could do with gaining a few pounds. - 25 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3293 - Null - The hat's a dead give away. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3294 - Dwarf - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3295 - Dwarf - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3296 - Swan - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3297 - Black swan - A rare bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3298 - Sweeper - Keeps this magic area tidy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3299 - Martin the Master Gardener - A master at gardening. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3300 - Frog - A magical frog. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3301 - Storm cloud - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3302 - Co-ordinator - Manages the fairies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3303 - Fairy Nuff - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3304 - Fairy Godfather - I'm gonna make him an offer he can't refuse. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3305 - Slim Louie - How am I funny - like a clown? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3306 - Fat Rocco - As far back as I can remember, I always wanted to be a gangster. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3307 - Gatekeeper - Guardian of the market gate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3308 - Zandar Horfyre - A practitioner of dark arts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3309 - Cow - Converts grass to beef. - 2 - 2 - true - false - false - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 0 - - - 3310 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3311 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3312 - Zanaris choir - They're going to sing to you! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3313 - Tanglefoot - A walking thorn bush! - 111 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3314 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3315 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3316 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3317 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3318 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3319 - Baby tanglefoot - An animated shrub. - 45 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 3320 - Baby tanglefoot - An aggressive bush. - 45 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 3321 - Gatekeeper - He's been posted here to prevent people entering a dangerous area. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3322 - Fairy chef - Likes to cook with mushrooms. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3323 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3324 - Draul Leptoc - This looks like an angry, aggressive man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3325 - Phillipa - A quiet, more reserved sort of lady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3326 - Martina Scorsby - A less enthusiastic ecclesiastic woman, she seems slightly tired. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3327 - Jeremy Clerksin - Rather more tired than most. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3328 - Tarquin - A dandy canoe man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3329 - Sigurd - His furs look very damp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3330 - Hari - Strange looking fella. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3331 - Barfy Bill - Looks a little green around the gills. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3332 - Trees - Trees and such. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3333 - Trees - Trees and such. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3334 - Cavemouth - A cave entrance. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3335 - Bullrush - A bullrush. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3336 - Bullrush - A bullrush. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3337 - Cave Scenery - Cave bits. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3338 - Cave Scenery - Cave bits. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3339 - Cave Scenery - Cave bits. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3340 - Giant Mole - Holy Mole-y! - 230 - 3 - true - false - true - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3341 - Baby Mole - I will call him, Mini Mole. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3342 - Baby Mole - Mooooooooooooole. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3343 - Baby Mole - Moley, moley, moley! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3344 - Fungi - A fun guy. No wait, that's awful. Plus it doesn't even make sense. - 74 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3345 - Fungi - A fun guy. No wait, that's awful. Plus it doesn't even make sense. - 86 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3346 - Zygomite - A bouncy fungus. - 74 - 1 - true - false - false - false - 10 - 1 - 65 - 4000 - 422 - 404 - 2304 - 84 - 84 - 84 - 0 - - - 3347 - Zygomite - A fun guy. No wait, that's awful.. - 86 - 2 - true - false - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 3348 - White Knight - A White Knight proselyte. - 38 - 1 - true - false - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3349 - White Knight - A White Knight acolyte. - 39 - 1 - true - false - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 3350 - White Knight - A White Knight partisan. - 42 - 1 - true - false - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 3351 - Genie - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3352 - Mysterious Old Man - A very strange old man... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3353 - Swarm - The Chosen Commander. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3354 - Cap'n Hand - The Chosen Commander. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3355 - Rick Turpentine - The Chosen Commander. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3356 - Niles - The brother of Miles and Giles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3357 - Miles - The brother of Niles and Giles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3358 - Giles - The brother of Niles and Miles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3359 - Dr Jekyll - The Chosen Commander. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3360 - Mr Hyde - The Chosen Commander. - 14 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3361 - Mr Hyde - No longer the Chosen Commander. - 29 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3362 - Mr Hyde - No longer the Chosen Commander. - 49 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3363 - Mr Hyde - Back from the dead...again? - 79 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3364 - Mr Hyde - Back from the dead...again? - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3365 - Mr Hyde - The Chosen Commander. - 159 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3366 - Evil Chicken - She looks badly hurt. - 19 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3367 - Evil Chicken - She looks badly hurt. - 38 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3368 - Evil Chicken - Her footing doesn't look very stable. - 69 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3369 - Evil Chicken - Back from the dead...again? - 81 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3370 - Evil Chicken - The famous cave-goblin adventurer. - 121 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3371 - Evil Chicken - A cave-goblin adventurer. - 159 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3372 - Sir Amik Varze - Leader of the White Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3373 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3374 - Sir Amik Varze - Leader of the White Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3375 - Evil Chicken - A fowl beast. - 159 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3376 - Baby black dragon - Young but still dangerous. - 83 - 2 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 3377 - K'klik - Could this be one of the Elder dragons? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3378 - Evil Dave - He seems to like wearing black. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3379 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3380 - Evil Dave - He seems to like wearing black. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3381 - Doris - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3382 - Hell-Rat - Vermin from the underworld. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3383 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3384 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3385 - Gypsy - An old gypsy lady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3386 - Gypsy - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3387 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3388 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3389 - Pirate Pete - A shifty-looking character. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3390 - Mountain Dwarf - He looks short and grumpy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3391 - General Wartface - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3392 - General Bentnoze - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3393 - Varrock Guide - He provides new players with useful information. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3394 - Evil Dave - He seems to like wearing black. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3395 - Sir Amik Varze - Leader of the White Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3396 - Awowogei - A rather dapper little monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3397 - Awowogei - A rather dapper little monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3398 - Skrach Uglogwee - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3399 - Null - An ogre. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3400 - Culinaromancer - A demented evil wizard who specialises in food spells. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3401 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3402 - An old Dwarf - A dwarven father figure! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3403 - Rohak - A dwarven father figure! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3404 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3405 - Rohak - A dwarven father figure! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3406 - Icefiend - A small ice demon. - 13 - 1 - true - false - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 3407 - General Wartface - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3408 - General Bentnoze - He tries to keep order around here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3409 - Null - A sentient plant - ready, willing and able to kill. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3410 - General Wartface - A sentient plant - ready, willing and able to kill. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3411 - Null - A sentient plant - ready, willing and able to kill. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3412 - General Bentnoze - A sentient plant - ready, willing and able to kill. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3413 - Goblin Cook - He's got funky socks, but he's still an ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3414 - Goblin Cook - More like a goblin cooked. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3415 - Goblin Cook - Half way up the wall is maybe not a naturally tenable position for a goblin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3416 - Pirate Pete - He looks a little piratey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3417 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3418 - Pirate Pete - He looks a little piratey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3419 - Mogre Guard - A large dim looking humanoid. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3420 - Nung - An angry Ogre in a highly amusing hat. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3421 - Crab - Nice claw! - 23 - 2 - true - false - false - false - 10 - 1 - 19 - 4000 - 422 - 404 - 2304 - 24 - 24 - 24 - 0 - - - 3422 - Mudskipper - Not the most beautiful fish in the sea. - 30 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 3423 - Mudskipper - Not the most beautiful fish in the sea. - 31 - 2 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 3424 - Crab - Nice claw! - 21 - 1 - true - false - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 3425 - Fish - A Red Fantail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3426 - Fish - A Red Fantail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3427 - Fish - A Red Fantail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3428 - Fish - A Black Moor Fantail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3429 - Fish - A Black Moor Fantail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3430 - Fish - A Black Moor Fantail. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3431 - Fish - An Angel Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3432 - Fish - An Angel Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3433 - Fish - An Angel Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3434 - Fish - A Harlequin Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3435 - Fish - A Harlequin Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3436 - Fish - A Harlequin Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3437 - Fish - A Discus Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3438 - Fish - A Discus Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3439 - Fish - A Discus Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3440 - Fish - A Paradise Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3441 - Fish - A Paradise Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3442 - Fish - A Paradise Fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3443 - Fish - A shoal of Neon Tetra. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3444 - Fish - A shoal of Neon Tetra. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3445 - Fish - A shoal of Neon Tetra. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3446 - Fish - A shoal of Pearl Danio. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3447 - Fish - A shoal of Pearl Danio. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3448 - Fish - A shoal of Pearl Danio. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3449 - Varrock Guide - An aggressive humanoid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3450 - Null - An aggressive humanoid. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3451 - Varrock Guide - A large dim looking humanoid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3452 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3453 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3454 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3455 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3456 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3457 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3458 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3459 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3460 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3461 - ? ? ? ? - Who could this be? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3462 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3463 - Skrach Uglogwee - An important looking ogre, he hits the table a lot. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3464 - Skrach Uglogwee - An important looking ogre. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3465 - Null - A fat, angry Ogre in a highly amusing hat. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3466 - Rantz - He's full of pent-up aggression. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3467 - Rantz - A large dim looking humanoid. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3468 - Rantz - A large dim looking humanoid. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3469 - Null - Rantz's boat, operated by his kids Fycie and Bugs. - 1 - 5 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3470 - Null - Rantz's boat, operated by his kids Fycie and Bugs. - 1 - 5 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3471 - Ogre boat - Rantz's boat, operated by his kids Fycie and Bugs. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3472 - Ogre boat - Rantz's boat, operated by his kids Fycie and Bugs. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3473 - Balloon Toad - A toad inflated with swamp gas and tied up like a balloon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3474 - Balloon Toad - A toad inflated with swamp gas and tied up like a balloon. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3475 - Balloon Toad - A quickly deflating balloon toad. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3476 - Jubbly bird - A large boisterous bird, a delicacy for ogres. - 9 - 3 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3477 - Jubbly bird - A once boisterous bird, closer to being an ogre delicacy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3478 - King Awowogei - A rather dapper little monkey. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3479 - Null - An ugly green creature. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3480 - King Awowogei - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3481 - Mizaru - He sees no evil. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3482 - Kikazaru - He hears no evil. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3483 - Iwazaru - He speaks no evil. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3484 - Big Snake - A big snake. - 84 - 2 - true - true - false - true - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3485 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3486 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3487 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3488 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3489 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3490 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3491 - Culinaromancer - A demented evil wizard who specialises in food spells. - 75 - 1 - true - true - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 3492 - Culinaromancer - A demented evil wizard who specialises in food spells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3493 - Agrith-Na-Na - Big, scary, angry and a good source of energy. - 146 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3494 - Flambeed - Will give you a beating as well as indigestion. - 149 - 5 - true - true - false - false - 10 - 1 - 210 - 4000 - 422 - 404 - 2304 - 273 - 273 - 273 - 0 - - - 3495 - Karamel - Pure evil lightly whipped with a juicy cherry on top. - 136 - 1 - true - true - false - false - 10 - 1 - 240 - 4000 - 422 - 404 - 2304 - 312 - 312 - 312 - 0 - - - 3496 - Dessourt - Bad for your teeth...and the rest of your body too. - 121 - 1 - true - true - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 3497 - Gelatinnoth Mother - Deadly AND fruity! - 130 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3498 - Gelatinnoth Mother - Deadly AND fruity! - 130 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3499 - Gelatinnoth Mother - Deadly AND fruity! - 130 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3500 - Gelatinnoth Mother - Deadly AND fruity! - 130 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3501 - Gelatinnoth Mother - Deadly AND fruity! - 130 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3502 - Gelatinnoth Mother - Deadly AND fruity! - 130 - 3 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3503 - Overgrown hellcat - A hellish not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3504 - Hellcat - A hellish pet cat! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3505 - Hell-kitten - A hellish little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3506 - Lazy hellcat - A hellish not-so-little pet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3507 - Wily hellcat - Wild and hellish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3508 - Leo - A lazy undertaker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3509 - Sorin - A flea infested, pale looking excuse of a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3510 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3511 - Wiskit - A flea infested, pale looking excuse of a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3512 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3513 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3514 - Vampyre Juvinate - An initiate juvenile vampire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3515 - Vampyre Juvinate - An initiate juvenile vampire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3516 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3517 - Gadderanks - A human supporter of the Vampyric overlords. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3518 - Gadderanks - A human supporter of the Vampyric overlords. - 35 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 3519 - Gadderanks - A human supporter of the Vampyric overlords. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3520 - Vampyre Juvinate - An initiate juvenile vampire. - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3521 - Vampyre Juvinate - An initiate juvenile vampire. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3522 - Vampyre Juvinate - An initiate juvenile vampyre. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3523 - Vampyre Juvinate - An initiate juvenile vampyre. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3524 - Vampyre Juvinate - It's an NPC. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3525 - Vampyre Juvinate - An initiate juvenile vampyre. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3526 - Vampyre Juvinate - An initiate juvenile vampyre, he looks really angry. - 64 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3527 - Held Vampyre Juvinate - A Juvinate vampyre, held in a powerful spell. - 54 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3528 - Vampyre Juvinate - An initiate juvenile vampyre. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3529 - Vampyre Juvinate - An initiate juvenile vampyre. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3530 - Mist - A billowing cloud of fine mist...it looks creepy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3531 - Vampyre Juvenile - He looks really hungry! - 45 - 1 - true - false - true - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3532 - Vampyre Juvenile - He looks really hungry! - 45 - 1 - true - false - true - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3533 - Vampyre Juvenile - He looks really hungry! - 45 - 1 - true - false - true - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3534 - Held Vampyre Juvenile - He looks really hungry! - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3535 - Ivan Strom - A member of the Myreque and an aspiring young priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3536 - Ivan Strom - A member of the Myreque and an aspiring young priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3537 - Vampyre Juvinate - An initiate juvenile vampire. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3538 - Vampyre Juvinate - An initiate juvenile vampire. - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3539 - Veliaf Hurtz - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3540 - Elisabeta - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3541 - Aurel - A flea infested, pale looking excuse of a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3542 - Sorin - A flea infested, pale looking excuse of a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3543 - Luscion - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3544 - Sergiu - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3545 - Radu - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3546 - Grigore - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3547 - Ileana - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3548 - Valeria - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3549 - Emilia - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3550 - Florin - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3551 - Catalina - It's a village kid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3552 - Ivan - It's a village kid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3553 - Victor - It's a village kid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3554 - Helena - It's a village kid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3555 - Teodor - He tries to grow the crops in this area. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3556 - Marius - A bed ridden man. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3557 - Gabriela - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3558 - Vladimir - An empty villager. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3559 - Calin - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3560 - Mihail - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3561 - Nicoleta - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3562 - Simona - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3563 - Vasile - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3564 - Razvan - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3565 - Luminata - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3566 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3567 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3568 - Cornelius - A citizen of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3569 - Cornelius - The sole banker of Burgh de Rott. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3570 - Benjamin - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3571 - Liam - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3572 - Miala - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3573 - Verak - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3574 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3575 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3576 - Juvinate - It's an NPC. - 59 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3577 - Juvinate - It looks really hungry! - 90 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3578 - Juvinate - It looks really hungry! - 119 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3579 - Sheep - A Sheep? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3580 - Tentacle - I'm glad I can't see the rest of it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3581 - Skeleton - He guards the dungeon with the faithfulness of the undead. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 3582 - Guard dog - Beware of the dog! - 44 - 1 - true - true - false - false - 10 - 1 - 49 - 4000 - 422 - 404 - 2304 - 63 - 63 - 63 - 0 - - - 3583 - Hobgoblin - He doesn't look very welcoming. - 54 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3584 - Troll - A pet Troll. - 91 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3585 - Huge spider - No spider could grow that big! It's unrealistic! - 81 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3586 - Hellhound - Good doggy... - 122 - 2 - true - true - false - false - 10 - 1 - 116 - 4000 - 422 - 404 - 2304 - 150 - 150 - 150 - 0 - - - 3587 - Ogre - A large dim looking humanoid. - 53 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 3588 - Baby red dragon - Young, but still dangerous. - 65 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3589 - Kalphite Soldier - I don't think insect repellent will work... - 85 - 3 - true - true - false - true - 10 - 1 - 90 - 4000 - 422 - 404 - 2304 - 117 - 117 - 117 - 0 - - - 3590 - Steel dragon - Its scales seem to be made of steel. - 246 - 3 - true - true - false - false - 10 - 1 - 210 - 4000 - 422 - 404 - 2304 - 273 - 273 - 273 - 0 - - - 3591 - Dagannoth - A darkened horror from the ocean depths. - 135 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3592 - Tok-Xil - I don't like the look of those spines... - 135 - 3 - true - false - false - false - 10 - 14 - 10 - 4000 - 2628 - 2629 - 2630 - 13 - 13 - 13 - 0 - - - 3593 - Demon - Arrgh! Look at its pointy teeth! - 82 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3594 - Rocnar - It's full of pent-up aggression. - 97 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3595 - Toy Soldier - Nice piece of crafting that... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3596 - Toy Doll - Nice piece of crafting that... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3597 - Toy Mouse - Nice piece of crafting that... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3598 - Clockwork cat - An amazing piece of crafting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3599 - Swamp snake - A large snake that thrives in swamps. - 80 - 3 - true - true - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 3600 - Swamp snake - A large snake that thrives in swamps. - 109 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3601 - Swamp snake - A large snake that thrives in swamps. - 139 - 5 - true - true - false - false - 10 - 1 - 130 - 4000 - 422 - 404 - 2304 - 169 - 169 - 169 - 0 - - - 3602 - Swamp snake - A dead snake that thrived in the swamp, until it met you. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3603 - Dead swamp snake - A dead snake that thrived in the swamp, until it met you. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3604 - Dead swamp snake - A dead snake that thrived in the swamp, until it met you. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3605 - Dead swamp snake - A dead snake that thrived in the swamp, until it met you. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3606 - Ghast - Arrghhh... A ghast! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3607 - Ghast - Arrghhh... A ghast! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3608 - Ghast - Arrghhh... A ghast! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3609 - Ghast - Arrghhh... A ghast! - 79 - 2 - true - true - false - false - 10 - 1 - 116 - 4000 - 422 - 404 - 2304 - 150 - 150 - 150 - 0 - - - 3610 - Ghast - Arrghhh... A ghast! - 109 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3611 - Ghast - Arrghhh... A ghast! - 139 - 2 - true - true - false - false - 10 - 1 - 160 - 4000 - 422 - 404 - 2304 - 208 - 208 - 208 - 0 - - - 3612 - Giant snail - Euew. - 80 - 3 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3613 - Giant snail - It's an NPC. - 109 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3614 - Giant snail - Euew. - 139 - 3 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3615 - Riyl shadow - The shadowy remains of a long-departed soul. - 80 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3616 - Asyn shadow - The shadowy remains of a long-departed soul. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3617 - Shade - The shadowy remains of a long-departed soul. - 140 - 1 - true - true - false - false - 10 - 1 - 110 - 4000 - 422 - 404 - 2304 - 143 - 143 - 143 - 0 - - - 3618 - Tentacle - I'm glad I can't see the rest of it! - 99 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3619 - Head - I'm glad I can't see the rest of it! - 140 - 1 - true - true - false - false - 10 - 1 - 149 - 4000 - 422 - 404 - 2304 - 193 - 193 - 193 - 0 - - - 3620 - Head - I'm glad I can't see the rest of it! - 140 - 1 - true - true - false - false - 10 - 1 - 149 - 4000 - 422 - 404 - 2304 - 193 - 193 - 193 - 0 - - - 3621 - Tentacle - I'm glad I can't see the rest of it! - 136 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3622 - Zombie - I wonder if he'd let me borrow his hatchet? - 23 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 3623 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3624 - Smiddi Ryak - Small lonely child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3625 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3626 - Rolayne Twickit - Old lonely man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3627 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3628 - Jayene Kliyn - A Burgh de Rott female militia volunteer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3629 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3630 - Valantay Eppel - A Burgh de Rott male militia volunteer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3631 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3632 - Dalcian Fang - A retired but dangerous looking man. He seems to be hanging around. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3633 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3634 - Fyiona Fray - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3635 - Abidor Crank - The good samaritan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3636 - Spirit tree - A young sentient tree. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3637 - Spirit tree - An ancient sentient tree. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3638 - Null - She looks tired of waiting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3639 - Launa - She looks tired of waiting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3640 - Launa - She looks tired of arguing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3641 - Brana - An old man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3642 - Mawnis Burowgar - Neitiznot's Burgher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3643 - Tolna - Where did his boot go? - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3644 - Tolna - A kid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3645 - Angry bear - He looks a little on the cross side! - 40 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3646 - Angry unicorn - He looks a little on the cross side! - 45 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3647 - Angry giant rat - He looks a little on the cross side! - 45 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 138 - 139 - 141 - 13 - 13 - 13 - 0 - - - 3648 - Angry goblin - It's an NPC. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3649 - Fear reaper - AHHHHH! - 42 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3650 - Confusion beast - What on Wildy is that?!? - 43 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3651 - Confusion beast - What on Wildy is that?!? - 43 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3652 - Confusion beast - What on Wildy is that?!? - 43 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3653 - Confusion beast - What on Wildy is that?!? - 43 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3654 - Confusion beast - What on Wildy is that?!? - 43 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3655 - Hopeless creature - A hopeless poor creature. - 40 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3656 - Hopeless creature - A hopeless poor creature. - 40 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3657 - Hopeless creature - A hopeless poor creature. - 40 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3658 - Tolna - Is that really Tolna? - 46 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3659 - Tolna - Is that really Tolna? - 46 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3660 - Tolna - Is that really Tolna? - 46 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3661 - Angry unicorn - He looks a little on the cross side! - 47 - 2 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3662 - Angry giant rat - He looks a little on the cross side! - 47 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 138 - 139 - 141 - 65 - 65 - 65 - 0 - - - 3663 - Angry goblin - He looks a little on the cross side! - 47 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3664 - Angry bear - He looks a little on the cross side! - 47 - 2 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3665 - Fear reaper - AHHHH! - 55 - 2 - true - true - false - false - 10 - 1 - 57 - 4000 - 422 - 404 - 2304 - 74 - 74 - 74 - 0 - - - 3666 - Confusion beast - What on Wildy is that?!? - 63 - 2 - true - true - false - false - 10 - 1 - 64 - 4000 - 422 - 404 - 2304 - 83 - 83 - 83 - 0 - - - 3667 - Hopeless creature - A hopeless poor creature. - 71 - 2 - true - true - false - false - 10 - 1 - 71 - 4000 - 422 - 404 - 2304 - 92 - 92 - 92 - 0 - - - 3668 - Hopeless beast - A hopeless poor creature. - 71 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3669 - Hopeless beast - A hopeless poor creature. - 71 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3670 - Odd Old Man - That's a lot of bones on his back... - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3671 - Fortunato - Looks like he could do with a sip of Amontillado. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3672 - Ram - Freshly sheared. - 2 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 3673 - Ram - White and fluffy. - 2 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 3674 - Bones - Bony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3675 - Vulture - If you see them circling run. - 31 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3676 - Vulture - If you see them circling run. - 31 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3677 - Sinister Stranger - He looks a LOT like a vampire... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3678 - Sinister Stranger - He looks a LOT like a vampire... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3679 - Vestri - He looks short and grumpy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3680 - Ali the Leaflet Dropper - A young boy handing out flyers. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3681 - Nigel - Even his mother hates him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3682 - Egg - Rolling, rolling, rolling - raw eggs! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3683 - Egg - Rolling, rolling, rolling - raw eggs! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3684 - Egg - Rolling, rolling, rolling - raw eggs! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3685 - Egg - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3686 - Chocolate kebbit - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3687 - Chocolate kebbit - Chocolatey kebbit goodness. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3688 - Easter Bunny - I don't exist, kids! - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3689 - Egg - A rolling chocolate egg. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3690 - Egg - A rolling chocolate egg. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3691 - Egg - A rolling chocolate egg. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3692 - Egg - A rolling chocolate egg. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3693 - Egg - A rolling chocolate egg. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3694 - Egg - A rolling chocolate egg. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3695 - Volf Olafson - One of the inhabitants of the camp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3696 - Ingrid Hradson - One of the inhabitants of the camp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3697 - Skeleton fremennik - Could use a good meal. - 40 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 3698 - Skeleton fremennik - Could use a good meal. - 40 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 3699 - Skeleton fremennik - Could use a good meal. - 40 - 1 - true - false - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 3700 - Skeleton fremennik - He seems a little underweight. - 50 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 3701 - Skeleton fremennik - He seems a little underweight. - 50 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 3702 - Skeleton fremennik - He seems a little underweight. - 50 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 3703 - Skeleton fremennik - He seems a little underweight. - 60 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 3704 - Skeleton fremennik - He seems a little underweight. - 60 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 3705 - Skeleton fremennik - He seems a little underweight. - 60 - 1 - true - false - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 3706 - Ulfric - What could be worse than an angry, undead fremennik? - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3707 - Brine rat - Eww, a bald rat! - 70 - 1 - true - false - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3708 - Boulder - Is it a rock crab? Our survey says no. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3709 - Boulder - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3710 - Ulfric - What could be worse than an angry, undead fremennik? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3711 - Giant bat - It's a pretty big bat. - 27 - 1 - true - true - false - false - 10 - 1 - 32 - 4000 - 422 - 404 - 2304 - 41 - 41 - 41 - 0 - - - 3712 - Zanik - A goblin adventurer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3713 - Sigmund - Former adviser to the Duke of Lumbridge. - 64 - 1 - false - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3714 - Zanik - Putting up a fight! - 41 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3715 - Guard - A guard for the Humans Against Monsters group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 3716 - Sigmund - Former adviser to the Duke of Lumbridge. - 64 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3717 - Sigmund - Former adviser to the Duke of Lumbridge. - 64 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3718 - Sigmund - Former adviser to the Duke of Lumbridge. - 64 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3719 - Sigmund - Former adviser to the Duke of Lumbridge. - 64 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3720 - Sigmund - Former adviser to the Duke of Lumbridge. - 64 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 3721 - Zanik - A heroic cave goblin joining you for another adventure! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3722 - Zanik - The Chosen Commander? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3723 - General Bentnoze - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3724 - General Wartface - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3725 - Grubfoot - Smaller than the average goblin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3726 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 309 - 312 - 313 - 0 - 0 - 0 - 0 - - - 3727 - Splatter - Don't burst its bubble! - 21 - 1 - true - false - false - false - 10 - 3 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 3728 - Splatter - Don't burst its bubble! - 32 - 1 - true - false - false - false - 10 - 4 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 3729 - Splatter - Don't burst its bubble! - 43 - 1 - true - false - false - false - 10 - 5 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 3730 - Splatter - Don't burst its bubble! - 53 - 1 - true - false - false - false - 10 - 7 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3731 - Splatter - Don't burst its bubble! - 64 - 1 - true - false - false - false - 10 - 9 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 3732 - Shifter - Nippy little thing! - 37 - 1 - true - true - false - false - 10 - 5 - 30 - 4000 - 3901 - 3902 - 3903 - 39 - 39 - 39 - 0 - - - 3733 - Shifter - Nippy little thing! - 37 - 1 - true - true - false - false - 10 - 5 - 30 - 4000 - 3901 - 3902 - 3903 - 39 - 39 - 39 - 0 - - - 3734 - Shifter - Nippy little thing! - 56 - 1 - true - true - false - false - 10 - 9 - 45 - 4000 - 3901 - 3902 - 3903 - 58 - 58 - 58 - 0 - - - 3735 - Shifter - Nippy little thing! - 56 - 1 - true - true - false - false - 10 - 9 - 45 - 4000 - 3901 - 3902 - 3903 - 58 - 58 - 58 - 0 - - - 3736 - Shifter - Nippy little thing! - 75 - 1 - true - true - false - false - 10 - 12 - 60 - 4000 - 3901 - 3902 - 3903 - 78 - 78 - 78 - 0 - - - 3737 - Shifter - Nippy little thing! - 75 - 1 - true - true - false - false - 10 - 12 - 60 - 4000 - 3901 - 3902 - 3903 - 78 - 78 - 78 - 0 - - - 3738 - Shifter - Nippy little thing! - 94 - 1 - true - false - false - false - 10 - 14 - 10 - 4000 - 3901 - 3902 - 3903 - 13 - 13 - 13 - 0 - - - 3739 - Shifter - Nippy little thing! - 94 - 1 - true - false - false - false - 10 - 14 - 10 - 4000 - 3901 - 3902 - 3903 - 13 - 13 - 13 - 0 - - - 3740 - Shifter - Nippy little thing! - 113 - 1 - true - false - false - false - 10 - 16 - 10 - 4000 - 3901 - 3902 - 3903 - 13 - 13 - 13 - 0 - - - 3741 - Shifter - Nippy little thing! - 113 - 1 - true - false - false - false - 10 - 16 - 10 - 4000 - 3901 - 3902 - 3903 - 13 - 13 - 13 - 0 - - - 3742 - Ravager - Worse than termites! - 35 - 1 - true - false - false - false - 10 - 4 - 30 - 4000 - 3915 - 3916 - 3917 - 39 - 39 - 39 - 0 - - - 3743 - Ravager - Worse than termites! - 52 - 1 - true - false - false - false - 10 - 6 - 45 - 4000 - 3915 - 3916 - 3917 - 58 - 58 - 58 - 0 - - - 3744 - Ravager - It's an NPC. - 70 - 1 - true - false - false - false - 10 - 8 - 60 - 4000 - 3915 - 3916 - 3917 - 78 - 78 - 78 - 0 - - - 3745 - Ravager - Worse than termites! - 88 - 1 - true - false - false - false - 10 - 12 - 75 - 4000 - 3915 - 3916 - 3917 - 97 - 97 - 97 - 0 - - - 3746 - Ravager - It's an NPC. - 105 - 1 - true - false - false - false - 10 - 16 - 100 - 4000 - 3915 - 3916 - 3917 - 130 - 130 - 130 - 0 - - - 3747 - Spinner - Eeewww! - 37 - 1 - true - true - false - false - 10 - 3 - 40 - 4000 - 3908 - 3909 - 3903 - 52 - 52 - 52 - 0 - - - 3748 - Spinner - Eeewww! - 55 - 1 - true - true - false - false - 10 - 5 - 60 - 4000 - 3908 - 3909 - 3903 - 78 - 78 - 78 - 0 - - - 3749 - Spinner - Eeewww! - 74 - 1 - true - true - false - false - 10 - 6 - 80 - 4000 - 3908 - 3909 - 3903 - 104 - 104 - 104 - 0 - - - 3750 - Spinner - Eeewww! - 92 - 1 - true - false - false - false - 10 - 8 - 10 - 4000 - 3908 - 3909 - 3903 - 13 - 13 - 13 - 0 - - - 3751 - Spinner - Eeewww! - 87 - 1 - true - true - false - false - 10 - 7 - 100 - 4000 - 3908 - 3909 - 3903 - 130 - 130 - 130 - 0 - - - 3752 - Torcher - Burn baby, burn! - 33 - 1 - true - true - false - false - 10 - 5 - 30 - 4000 - 3879 - 3880 - 3881 - 39 - 39 - 39 - 0 - - - 3753 - Torcher - Burn baby, burn! - 33 - 1 - true - true - false - false - 10 - 5 - 30 - 4000 - 3879 - 3880 - 3881 - 39 - 39 - 39 - 0 - - - 3754 - Torcher - Burn baby, burn! - 49 - 1 - true - true - false - false - 10 - 8 - 45 - 4000 - 3879 - 3880 - 3881 - 58 - 58 - 58 - 0 - - - 3755 - Torcher - Burn baby, burn! - 49 - 1 - true - true - false - false - 10 - 7 - 45 - 4000 - 3879 - 3880 - 3881 - 58 - 58 - 58 - 0 - - - 3756 - Torcher - Burn baby, burn! - 67 - 1 - true - true - false - false - 10 - 9 - 60 - 4000 - 3879 - 3880 - 3881 - 78 - 78 - 78 - 0 - - - 3757 - Torcher - Burn baby, burn! - 67 - 1 - true - true - false - false - 10 - 9 - 60 - 4000 - 3879 - 3880 - 3881 - 78 - 78 - 78 - 0 - - - 3758 - Torcher - Burn baby, burn! - 83 - 1 - true - true - false - false - 10 - 11 - 75 - 4000 - 3879 - 3880 - 3881 - 97 - 97 - 97 - 0 - - - 3759 - Torcher - Burn baby, burn! - 83 - 1 - true - true - false - false - 10 - 11 - 75 - 4000 - 3879 - 3880 - 3881 - 97 - 97 - 97 - 0 - - - 3760 - Torcher - Burn baby, burn! - 100 - 1 - true - false - false - false - 10 - 13 - 90 - 4000 - 3879 - 3880 - 3881 - 117 - 117 - 117 - 0 - - - 3761 - Torcher - Burn baby, burn! - 100 - 1 - true - false - false - false - 10 - 13 - 90 - 4000 - 3879 - 3880 - 3881 - 117 - 117 - 117 - 0 - - - 3762 - Defiler - Duck! - 33 - 1 - true - true - false - false - 10 - 5 - 40 - 4000 - 3920 - 3921 - 3922 - 52 - 52 - 52 - 0 - - - 3763 - Defiler - Duck! - 33 - 1 - true - true - false - false - 10 - 5 - 40 - 4000 - 3920 - 3921 - 3922 - 52 - 52 - 52 - 0 - - - 3764 - Defiler - Duck! - 50 - 1 - true - true - false - false - 10 - 7 - 60 - 4000 - 3920 - 3921 - 3922 - 78 - 78 - 78 - 0 - - - 3765 - Defiler - Duck! - 50 - 1 - true - true - false - false - 10 - 7 - 60 - 4000 - 3920 - 3921 - 3922 - 78 - 78 - 78 - 0 - - - 3766 - Defiler - Duck! - 67 - 1 - true - true - false - false - 10 - 8 - 80 - 4000 - 3920 - 3921 - 3922 - 104 - 104 - 104 - 0 - - - 3767 - Defiler - Duck! - 67 - 1 - true - true - false - false - 10 - 8 - 80 - 4000 - 3920 - 3921 - 3922 - 104 - 104 - 104 - 0 - - - 3768 - Defiler - Duck! - 84 - 1 - true - true - false - false - 10 - 9 - 100 - 4000 - 3920 - 3921 - 3922 - 130 - 130 - 130 - 0 - - - 3769 - Defiler - Duck! - 84 - 1 - true - true - false - false - 10 - 9 - 100 - 4000 - 3920 - 3921 - 3922 - 130 - 130 - 130 - 0 - - - 3770 - Defiler - Duck! - 100 - 1 - true - false - false - false - 10 - 11 - 120 - 4000 - 3920 - 3921 - 3922 - 156 - 156 - 156 - 0 - - - 3771 - Defiler - Duck! - 100 - 1 - true - false - false - false - 10 - 11 - 120 - 4000 - 3920 - 3921 - 3922 - 156 - 156 - 156 - 0 - - - 3772 - Brawler - Mind your toes! - 50 - 2 - true - true - false - false - 10 - 7 - 60 - 4000 - 3897 - 3895 - 3894 - 78 - 78 - 78 - 0 - - - 3773 - Brawler - Mind your toes! - 75 - 2 - true - true - false - false - 10 - 9 - 90 - 4000 - 3897 - 3895 - 3894 - 117 - 117 - 117 - 0 - - - 3774 - Brawler - Mind your toes! - 100 - 2 - true - false - false - false - 10 - 13 - 10 - 4000 - 3897 - 3895 - 3894 - 13 - 13 - 13 - 0 - - - 3775 - Brawler - Mind your toes! - 128 - 2 - true - true - false - false - 10 - 17 - 150 - 4000 - 3897 - 3895 - 3894 - 195 - 195 - 195 - 0 - - - 3776 - Brawler - Mind your toes! - 157 - 2 - true - true - false - false - 10 - 20 - 180 - 4000 - 3897 - 3895 - 3894 - 234 - 234 - 234 - 0 - - - 3777 - Portal - Cheerful, helpful and optimistic, I'll bet. - 0 - 3 - true - false - false - false - 10 - 0 - 250 - 0 - -1 - -1 - -1 - 0 - 100 - 100 - 100 - - - 3778 - Portal - King of Camelot. - 0 - 3 - true - false - false - false - 10 - 0 - 250 - 0 - -1 - -1 - -1 - 0 - 100 - 100 - 100 - - - 3779 - Portal - King Arthur in disguise. - 0 - 3 - true - false - false - false - 10 - 0 - 250 - 0 - -1 - -1 - -1 - 0 - 100 - 100 - 100 - - - 3780 - Portal - Magical. - 0 - 3 - true - false - false - false - 10 - 0 - 250 - 0 - -1 - -1 - -1 - 0 - 100 - 100 - 100 - - - 3781 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3782 - Void Knight - A powerful knight of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 200 - 0 - 0 - 404 - 2304 - 0 - 100 - 100 - 100 - - - 3783 - Void Knight - Long legged licker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3784 - Void Knight - A powerful knight of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3785 - Void Knight - A powerful knight of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3786 - Void Knight - A powerful knight of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3787 - Void Knight - One of the Knights of the Round Table. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3788 - Void Knight - A powerful knight of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3789 - Void Knight - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3790 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3791 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3792 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3793 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3794 - Squire - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3795 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3796 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3797 - Squire - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3798 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3799 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3800 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3801 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3802 - Squire - A squire of balance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3803 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3804 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3805 - Postie Pete - Posts things. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3806 - Millie Miller - Miss Millicent Miller the Miller of Mill Lane Mill. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3807 - Gillie Groats - Gillie the Milkmaid milks cows. She's udderly fantastic at it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3808 - Tortoise - Massive beast of War with extra Gnome. - 92 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3809 - Captain Dalbur - Tally Ho! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3810 - Captain Bleemadge - Huzzah! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3811 - Captain Errdo - Up up and away! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3812 - Captain Klemfoodle - Up up and away! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3813 - Captain Wimto - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3814 - Gnome Archer - A Gnome Arrow-chucker - 5 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3815 - Gnome Driver - Yee haa! - 5 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3816 - Gnome Mage - A battle mage of the gnomish variety. - 5 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3817 - Lieutenant Schepbur - The battle tortoise commander. Sir! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3818 - Trainer Nacklepen - The cruel tortoise trainer. Boo! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3819 - Tortoise - A large tortoise. - 79 - 3 - true - false - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 3820 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3821 - Wise Old Man - A venerable and rich sage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3822 - Herman Caranos - Founder and Director of the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3823 - Franklin Caranos - Engineer for the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3824 - Arnold Lydspor - Secretary and Storemaster for the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3825 - Devin Mendelberg - A member of the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3826 - George Laxmeister - A member of the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3827 - Ramara du Croissant - A member of the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3828 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3829 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3830 - Kathy Corkat - Carries supplies to the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3831 - Kathy Corkat - Carries supplies to the Piscatoris Fishing Colony. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3832 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3833 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3834 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3835 - Kalphite Queen - I don't think insect repellent will work... - 333 - 5 - true - true - false - false - 10 - 1 - 255 - 4000 - 422 - 404 - 2304 - 331 - 331 - 331 - 0 - - - 3836 - Kalphite Queen - I don't think insect repellent will work... - 333 - 5 - true - true - false - false - 10 - 1 - 255 - 4000 - 422 - 404 - 2304 - 331 - 331 - 331 - 0 - - - 3837 - Drunken Dwarf - He's had a fair bit to drink... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3838 - Wise Old Man - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3839 - Wise Old Man - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3840 - Sea troll - An aquatic troll. - 79 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3841 - Sea troll - It's an NPC. - 65 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3842 - Sea troll - An aquatic troll. - 87 - 1 - true - true - false - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 3843 - Sea troll - An aquatic troll. - 101 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3844 - Skeleton Mage - Recalled to unlife! - 64 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3845 - Sea troll - An aquatic troll. - 58 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 3846 - Sea Troll General - This will not be so easy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3847 - Sea Troll Queen - The mother of all sea trolls! - 170 - 5 - true - true - false - true - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 3848 - Fishing spot - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3849 - Fishing spot - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3850 - Skeleton Mage - Recalled to unlife! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3851 - Skeleton Mage - Doesn't seem to want to go away. - 83 - 1 - true - false - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 3852 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3853 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3854 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3855 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3856 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3857 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3858 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3859 - Suspect - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3860 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3861 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3862 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3863 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3864 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3865 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3866 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3867 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3868 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3869 - Suspect - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3870 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3871 - Suspect - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3872 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3873 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3874 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3875 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3876 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3877 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3878 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3879 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3880 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3881 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3882 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3883 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3884 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3885 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3886 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3887 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3888 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3889 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3890 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3891 - Suspect - Is she the one? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3892 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3893 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3894 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3895 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3896 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3897 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3898 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3899 - Molly - AKA Goody Two-Shoes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3900 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3901 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3902 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3903 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3904 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3905 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3906 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3907 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3908 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3909 - Molly - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3910 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3911 - Molly - AKA Goody Two-Shoes - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3912 - Flippa - He looks flipping mad. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3913 - Tilt - He looks ready to flip out. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3914 - Gardener - An old gardener. - 4 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3915 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 3916 - Carpenter Kjallak - His bark's worse than his blight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3917 - Farmer Fromund - He looks a bit seedy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3918 - Prince Brand - The Prince of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3919 - Princess Astrid - The Princess of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3920 - Runa - The barmaid of the Esoterican Arms. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3921 - Halla - She owns the clothes shop. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3922 - Finn - Runs the general store. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3923 - Osvald - If it's edible, he'll sell it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3924 - Runolf - A subject of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3925 - Tjorvi - A subject of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3926 - Ingrid - A subject of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3927 - Thora - A subject of Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3928 - Signy - A Fremennik teenager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3929 - Hild - A Fremennik teenager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3930 - Armod - A Fremennik teenager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3931 - Beigarth - A Fremennik teenager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3932 - Reinn - A Fremennik teenager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3933 - Alviss - A dwarf who's currently living in Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3934 - Fullangr - A dwarf who's currently living in Miscellania. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3935 - Jari - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3936 - Thorodin - A dwarf miner. He's digging holes in the walls. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3937 - Ferd - A dwarf miner. He's shoring up the walls. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3938 - Donal - A rather scared-looking dwarf. He doesn't seem all that drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3939 - Sea Snake Young - Snake, snake, oh, it's a young snake... - 90 - 2 - true - false - false - true - 10 - 1 - 85 - 4000 - 422 - 404 - 2304 - 110 - 110 - 110 - 0 - - - 3940 - Sea Snake Hatchling - A baby sea snake. Snaaaaaaake! - 62 - 1 - true - false - false - true - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 3941 - Guard - He's guarding the entrance to the dungeons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3942 - Guard - He's guarding the entrance to the dungeons. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3943 - Giant Sea Snake - A big snake that lives in the sea. How did it get in here? - 149 - 5 - true - true - false - true - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 3944 - Hangman game - Guess right or the mannequin gets it! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3945 - Hangman game - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3946 - Hangman game - Guess right or the mannequin gets it! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3947 - Hangman game - Guess right or the mannequin gets it! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3948 - Hangman game - Guess right or the mannequin gets it! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3949 - Hangman game - Guess right or the mannequin gets it! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3950 - Hangman game - Have you tried 'E' yet? - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3951 - Hangman game - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3952 - Hangman game - Be careful! One wrong move and he's had it! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3953 - Hangman game - Oh no! He's been hanged! - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3954 - Treasure fairy - Where is she hiding the treasure? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3955 - Jacky Jester - A wacky Jester. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3956 - Combat stone - It's destroyed! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3957 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3958 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3959 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3960 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3961 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3962 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3963 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3964 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3965 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3966 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3967 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3968 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3969 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3970 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3971 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3972 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3973 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3974 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3975 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3976 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3977 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3978 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3979 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3980 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3981 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3982 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3983 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3984 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3985 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3986 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3987 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3988 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3989 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3990 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3991 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3992 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3993 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3994 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3995 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3996 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3997 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3998 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 3999 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4000 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4001 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4002 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4003 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4004 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4005 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4006 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4007 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4008 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4009 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4010 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4011 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4012 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4013 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4014 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4015 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4016 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4017 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4018 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4019 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4020 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4021 - Elemental balance - You can practice your magic here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4022 - Elemental balance - It's very slightly red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4023 - Elemental balance - It's slightly red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4024 - Elemental balance - It's a bit red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4025 - Elemental balance - It's quite red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4026 - Elemental balance - It's bright red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4027 - Elemental balance - It's glowing bright red! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4028 - Elemental balance - It's very slightly blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4029 - Elemental balance - It's slightly blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4030 - Elemental balance - It's a bit blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4031 - Elemental balance - It's quite blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4032 - Elemental balance - It's bright blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4033 - Elemental balance - It's glowing bright blue! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4034 - Elemental balance - It's very slightly green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4035 - Elemental balance - It's slightly green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4036 - Elemental balance - It's a bit green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4037 - Elemental balance - It's quite green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4038 - Elemental balance - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4039 - Elemental balance - It's glowing bright green! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4040 - Elemental balance - It's very slightly cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4041 - Elemental balance - It's slightly cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4042 - Elemental balance - It's a bit cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4043 - Elemental balance - It's quite cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4044 - Elemental balance - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4045 - Elemental balance - It's glowing bright cyan! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4046 - Elemental balance - You can practice your magic here. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4047 - Elemental balance - It's very slightly red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4048 - Elemental balance - It's slightly red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4049 - Elemental balance - It's a bit red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4050 - Elemental balance - It's quite red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4051 - Elemental balance - It's bright red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4052 - Elemental balance - It's glowing bright red! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4053 - Elemental balance - It's very slightly blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4054 - Elemental balance - It's slightly blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4055 - Elemental balance - It's a bit blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4056 - Elemental balance - It's quite blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4057 - Elemental balance - It's bright blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4058 - Elemental balance - It's glowing bright blue! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4059 - Elemental balance - It's very slightly green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4060 - Elemental balance - It's slightly green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4061 - Elemental balance - It's a bit green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4062 - Elemental balance - It's quite green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4063 - Elemental balance - It's bright green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4064 - Elemental balance - It's glowing bright green! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4065 - Elemental balance - It's very slightly cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4066 - Elemental balance - It's slightly cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4067 - Elemental balance - It's a bit cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4068 - Elemental balance - It's quite cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4069 - Elemental balance - It's bright cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4070 - Elemental balance - It's glowing bright cyan! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4071 - Elemental balance - It's pure white and perfectly balanced! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4072 - Elemental balance - It's very slightly red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4073 - Elemental balance - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4074 - Elemental balance - It's a bit red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4075 - Elemental balance - It's quite red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4076 - Elemental balance - It's bright red. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4077 - Elemental balance - It's glowing bright red! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4078 - Elemental balance - It's very slightly blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4079 - Elemental balance - It's slightly blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4080 - Elemental balance - It's a bit blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4081 - Elemental balance - It's quite blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4082 - Elemental balance - It's bright blue. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4083 - Elemental balance - It's glowing bright blue! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4084 - Elemental balance - It's very slightly green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4085 - Elemental balance - It's slightly green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4086 - Elemental balance - It's a bit green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4087 - Elemental balance - It's quite green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4088 - Elemental balance - It's bright green. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4089 - Elemental balance - It's glowing bright green! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4090 - Elemental balance - It's very slightly cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4091 - Elemental balance - It's slightly cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4092 - Elemental balance - It's a bit cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4093 - Elemental balance - It's quite cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4094 - Elemental balance - It's bright cyan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4095 - Elemental balance - It's glowing bright cyan! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4096 - Combat stone - It's destroyed! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4097 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4098 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4099 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4100 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4101 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4102 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4103 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4104 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4105 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4106 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4107 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4108 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4109 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4110 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4111 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4112 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4113 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4114 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4115 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4116 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4117 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4118 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4119 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4120 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4121 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4122 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4123 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4124 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4125 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4126 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4127 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4128 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4129 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4130 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4131 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4132 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4133 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4134 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4135 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4136 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4137 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4138 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4139 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4140 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4141 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4142 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4143 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4144 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4145 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4146 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4147 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4148 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4149 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4150 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4151 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4152 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4153 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4154 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4155 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4156 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4157 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4158 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4159 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4160 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4161 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4162 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4163 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4164 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4165 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4166 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4167 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4168 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4169 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4170 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4171 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4172 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4173 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4174 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4175 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4176 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4177 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4178 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4179 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4180 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4181 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4182 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4183 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4184 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4185 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4186 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4187 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4188 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4189 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4190 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4191 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4192 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4193 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4194 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4195 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4196 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4197 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4198 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4199 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4200 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4201 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4202 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4203 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4204 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4205 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4206 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4207 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4208 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4209 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4210 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4211 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4212 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4213 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4214 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4215 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4216 - Combat stone - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4217 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4218 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4219 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4220 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4221 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4222 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4223 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4224 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4225 - Combat stone - Try to damage it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4226 - Crawling hand - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4227 - Cockatrice - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4228 - Basilisk - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4229 - Kurask - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4230 - Abyssal demon - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4231 - Left head - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4232 - Middle head - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4233 - Right head - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4234 - Kalphite Queen - And with its head he came galumphing back. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4235 - Rick - He wears a hat to hide the fact that he's bald. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4236 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4237 - Maid - Very neat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4238 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4239 - Cook - I hope she can find all the ingredients! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4240 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4241 - Butler - He knows how to buttle. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4242 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4243 - Demon butler - Blimey, a Demon Butler! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4244 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4245 - Chief servant - Head of the servants' guild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4246 - Taxidermist - She smells unpleasantly of chemicals. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4247 - Estate agent - A fancy businessman with a mighty fine hat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4248 - Stonemason - Someone has to get rid of all the stone they dug Keldagrim out of. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4249 - Sir Renitee - Chief Herald of Falador. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4250 - Sawmill operator - He changes the shape of wood. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4251 - Garden supplier - She has green fingers. (Not literally.) - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4252 - Macaroni Penguin - Beak areful with this one, he looks shifty! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4253 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4254 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4255 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4256 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4257 - Guard - A dwarven guard. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 4258 - Guard - A dwarven guard. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 4259 - Guard - A dwarven guard. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 4260 - Guard - A dwarven guard. - 10 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 4261 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4262 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4263 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4264 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4265 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4266 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4267 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4268 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4269 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313> - 6 - 6 - 6 - 0 - - - 4270 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4271 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4272 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4273 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4274 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4275 - Goblin - An ugly green creature. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4276 - Goblin - It's an NPC. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 309 - 312 - 313 - 6 - 6 - 6 - 0 - - - 4277 - Buinn - Engineer's assistant. - 1 - 5 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4278 - Animated Bronze Armour - Animated bronze armour. - 11 - 1 - true - true - true - false - 10 - 3 - 10 - 4000 - 451 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4279 - Animated Iron Armour - Animated iron armour. - 23 - 1 - true - true - true - false - 10 - 6 - 20 - 4000 - 451 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 4280 - Animated Steel Armour - Animated steel armour. - 46 - 1 - true - true - true - false - 10 - 10 - 40 - 4000 - 451 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 4281 - Animated Black Armour - Animated black armour. - 69 - 1 - true - true - true - false - 10 - 13 - 60 - 4000 - 451 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4282 - Animated Mithril Armour - Animated mithril armour. - 92 - 1 - true - true - true - false - 10 - 16 - 80 - 4000 - 451 - 404 - 2304 - 20 - 20 - 20 - 20 - - - 4283 - Animated Adamant Armour - Animated adamant armour. - 113 - 1 - true - true - true - false - 10 - 19 - 99 - 4000 - 7041 - 404 - 2304 - 20 - 20 - 20 - 20 - - - 4284 - Animated Rune Armour - Animated rune armour. - 138 - 1 - true - true - true - false - 10 - 22 - 120 - 4000 - 451 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 4285 - Ghommal - The big door man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4286 - Harrallak Menarous - Guild Master. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4287 - Gamfred - The guild engineer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4288 - Ajjat - Used to be a black knight. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4289 - Kamfreena - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4290 - Shanomi - A warrior mage from the east. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4291 - Cyclops - A one-eyed man eater. - 56 - 2 - true - true - false - false - 10 - 1 - 80 - 4000 - 4652 - 4651 - 4653 - 104 - 104 - 104 - 0 - - - 4292 - Cyclops - A one-eyed woman eater. - 76 - 2 - true - true - false - false - 10 - 1 - 100 - 4000 - 4652 - 4651 - 4653 - 130 - 130 - 130 - 0 - - - 4293 - Lidio - Food shopkeeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4294 - Lilly - Potion shopkeeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4295 - Anton - Armour shopkeeper. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4296 - Jade - Bank staff. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4297 - Sloane - He looks like a strong warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4298 - Jimmy - He looks a bit drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4299 - Ref - He looks fair and reliable. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4300 - Ref - He looks fair and reliable. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4301 - Guard - A guard for the humans against monster group. - 22 - 1 - false - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4302 - Guard - A guard for the humans against monster group. - 22 - 1 - false - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4303 - Guard - A guard for the humans against monster group. - 22 - 1 - false - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4304 - Guard - It's an NPC. - 22 - 1 - false - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4305 - Guard - A guard for the humans against monster group. - 22 - 1 - false - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4306 - Guard - A guard for the humans against monster group. - 22 - 1 - false - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4307 - Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4308 - Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4309 - Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4310 - Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4311 - Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4312 - Nardok - What has he got under his coat? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4313 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4314 - Dartog - He's standing guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4315 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4316 - Dwarf - He delivers the goods. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4317 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4318 - H.A.M. Member - A member of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4319 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4320 - H.A.M. Member - A member of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4321 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4322 - Zanik - A younger Zanik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4323 - Zanik - A younger Zanik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4324 - Zanik - The mark on her head is glowing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4325 - Light creature - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4326 - Zanik - Hopefully she'll pass as a short, hunched HAM member. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4327 - HAM member - A guard for the humans against monster group. - 22 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4328 - Sigmund - He's plotting something bad! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4329 - H.A.M. Deacon - A deacon in the Humans Against Monsters group. A rather enthusiastic chap. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4330 - Johanhus Ulsbrecht - The leader of the 'Humans Against Monsters' group. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4331 - Sigmund - Former adviser to the Duke of Lumbridge. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4332 - Sigmund - Former adviser to the Duke of Lumbridge. - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4333 - Sigmund - Former adviser to the Duke of Lumbridge. - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4334 - Sigmund - Former adviser to the Duke of Lumbridge. - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4335 - Sigmund - Former adviser to the Duke of Lumbridge. - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4336 - Guard - A guard for the humans against monster group. - 22 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4337 - Zanik - She has a mark on her head. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4338 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4339 - Zanik - An eager cave goblin on her first trip to the surface. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4340 - Zanik - Hopefully she'll pass as a short, hunched HAM member. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4341 - Zanik - An eager cave goblin on her first trip to the surface. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4342 - Zanik - A goblin fighting for her city. - 41 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4343 - Snake - Snake! Snaaaaake! - 35 - 1 - true - false - false - true - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 4344 - Monkey - Perhaps our oldest relatives? - 3 - 1 - true - false - true - false - 10 - 1 - 6 - 4000 - 422 - 404 - 2304 - 7 - 7 - 7 - 0 - - - 4345 - Albino bat - It's all white by me. - 52 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4346 - Crab - Clearly not a hermit. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4347 - Giant mosquito - A flying blood sucker. - 13 - 1 - true - false - false - false - 10 - 1 - 3 - 4000 - 422 - 404 - 2304 - 3 - 3 - 3 - 0 - - - 4348 - Jungle horror - A horrible, emaciated ape like creature with beady red eyes. - 70 - 2 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 4349 - Jungle horror - A horrible, emaciated ape like creature with beady yellow eyes. - 70 - 1 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 4350 - Jungle horror - A horrible, emaciated ape like creature with beady green eyes. - 70 - 2 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 4351 - Jungle horror - A horrible, emaciated ape like creature with beady blue eyes. - 70 - 1 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 4352 - Jungle horror - A horrible, emaciated ape like creature with beady pink eyes. - 70 - 2 - true - true - false - false - 10 - 1 - 45 - 4000 - 422 - 404 - 2304 - 58 - 58 - 58 - 0 - - - 4353 - Cave horror - A horrible, emaciated ape like creature with beady red eyes. - 80 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 4354 - Cave horror - A horrible, emaciated ape like creature with beady red eyes. - 80 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 4355 - Cave horror - A horrible, emaciated ape like creature with beady red eyes. - 80 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 4356 - Cave horror - A horrible, emaciated ape like creature with beady red eyes. - 80 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 4357 - Cave horror - A horrible, emaciated ape like creature with beady red eyes. - 80 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 4358 - Cavey Davey - A pirate of Mos Le'Harmless. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4359 - Patchy - Patchy the pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4360 - San Fan - A pirate from the lands to the east. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4361 - Fancy Dan - A very flamboyant pirate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4362 - Honest Jimmy - I can't wait to buy from a guy with Honest in his name... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4363 - Monkey - Perhaps arr oldest piratical relatives? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4364 - Swarm - A swarm of vicious sweetflies! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4365 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4366 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4367 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4368 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4369 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4370 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4371 - Blue Monkey - A native monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4372 - Red Monkey - A native monkey. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4373 - Parrot - A colourful bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4374 - Parrot - A colourful bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4375 - Security Guard - A retired Wildy security guard. - 0 - 1 - true - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4376 - Litara - Litara, a barbarian explorer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4377 - Gate of War - Very war-like and looking at you! - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4378 - Ricketty door - Even this door looks half starved, maybe it's going to invite you for lunch. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4379 - Oozing barrier - Are you sure you want to touch that? - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4380 - Portal of Death - Bones of the long dead crafted into an elaborate portal. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4381 - Ankou - A boney ghost. - 75 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4382 - Ankou - A boney ghost. - 82 - 1 - true - true - false - false - 10 - 1 - 65 - 4000 - 422 - 404 - 2304 - 84 - 84 - 84 - 0 - - - 4383 - Ankou - A boney ghost. - 86 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4384 - Skeleton - Could do with gaining a few pounds. - 68 - 1 - true - true - false - false - 10 - 1 - 77 - 4000 - 422 - 404 - 2304 - 100 - 100 - 100 - 0 - - - 4385 - Skeleton - Could do with gaining a few pounds. - 60 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4386 - Skeleton - Could do with gaining a few pounds. - 85 - 1 - true - true - false - false - 10 - 1 - 78 - 4000 - 422 - 404 - 2304 - 101 - 101 - 101 - 0 - - - 4387 - Ghost - Eeek! A ghost! - 77 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 4388 - Ghost - Eeek! A ghost! - 76 - 1 - true - true - false - false - 10 - 1 - 74 - 4000 - 422 - 404 - 2304 - 96 - 96 - 96 - 0 - - - 4389 - Flesh Crawler - I don't think insect repellent will work... - 28 - 2 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 4390 - Flesh Crawler - I don't think insect repellent will work... - 35 - 2 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 4391 - Flesh Crawler - I don't think insect repellent will work... - 41 - 2 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 4392 - Zombie - Dead man walking. - 30 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 4393 - Zombie - Dead man walking. - 44 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 4394 - Zombie - The walking dead. - 53 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4395 - Giant rat - Overgrown vermin. - 26 - 2 - true - true - false - false - 10 - 1 - 25 - 4000 - 138 - 139 - 141 - 32 - 32 - 32 - 0 - - - 4396 - Rat - A popular dwarven delicacy. - 1 - 1 - true - false - true - false - 10 - 1 - 2 - 4000 - 422 - 404 - 2304 - 2 - 2 - 2 - 0 - - - 4397 - Catablepon - Big... Cow-like... But cows don't have serpent tails! - 49 - 2 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 4398 - Catablepon - Big... Cow-like... But cows don't have serpent tails! - 64 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4399 - Catablepon - Big... Cow-like... But cows don't have serpent tails! - 68 - 2 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4400 - Giant spider - I think this spider has been genetically modified. - 50 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4401 - Spider - Incey wincey... with a nasty bite. - 24 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4402 - Scorpion - An extremely vicious scorpion. - 59 - 2 - true - true - false - false - 10 - 1 - 55 - 4000 - 422 - 404 - 2304 - 71 - 71 - 71 - 0 - - - 4403 - Scorpion - An extremely vicious scorpion. - 37 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4404 - Minotaur - He doesn't look very pleased to see you. - 12 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4405 - Minotaur - He doesn't look very pleased to see you. - 19 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4406 - Minotaur - He doesn't look very pleased to see you. - 27 - 1 - true - true - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4407 - Goblin - An ugly green creature. - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 309 - 312 - 313 - 15 - 15 - 15 - 0 - - - 4408 - Goblin - These goblins have grown strong. - 13 - 1 - true - false - false - false - 10 - 1 - 16 - 4000 - 309 - 312 - 313 - 20 - 20 - 20 - 0 - - - 4409 - Goblin - It's an NPC. - 11 - 1 - true - true - false - false - 10 - 1 - 7 - 4000 - 309 - 312 - 313 - 9 - 9 - 9 - 0 - - - 4410 - Goblin - An ugly green creature. - 16 - 1 - true - true - false - false - 10 - 1 - 23 - 4000 - 309 - 312 - 313 - 29 - 29 - 29 - 0 - - - 4411 - Goblin - It's an NPC. - 25 - 1 - true - true - false - false - 10 - 1 - 26 - 4000 - 309 - 312 - 313 - 33 - 33 - 33 - 0 - - - 4412 - Goblin - An ugly green creature. - 16 - 1 - true - true - false - false - 10 - 1 - 23 - 4000 - 309 - 312 - 313 - 29 - 29 - 29 - 0 - - - 4413 - Wolf - Not man's best friend. - 14 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4414 - Wolf - Not man's best friend. - 11 - 2 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 4415 - Rat - A popular dwarven delicacy. - 1 - 1 - true - false - true - false - 10 - 1 - 2 - 4000 - 422 - 404 - 2304 - 2 - 2 - 2 - 0 - - - 4416 - Bee keeper - A goblin 'spy' that Sigmund's followers have captured. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4417 - Bees! - Oldak's new assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4418 - Gorak - Gorak by name, Gorak by nature. - 145 - 2 - true - true - false - false - 10 - 1 - 114 - 4000 - 422 - 404 - 2304 - 148 - 148 - 148 - 0 - - - 4419 - Cosmic Being - A highly enlightened being. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4420 - Null - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4421 - Null - - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4422 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4423 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4424 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4425 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4426 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4427 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4428 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4429 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4430 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4431 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4432 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4433 - Fairy Godfather - I'm gonna make him an offer he can't refuse. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4434 - Fairy Nuff - A healing fairy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4435 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4436 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4437 - Fairy Queen - Looks otherworldy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4438 - Centaur - Horseplay. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4439 - Centaur - Half horse, half woman. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4440 - Stag - A noble creature! - 15 - 2 - true - false - false - false - 10 - 1 - 19 - 4000 - 422 - 404 - 2304 - 24 - 24 - 24 - 0 - - - 4441 - Wood Dryad - Twiggy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4442 - Fairy Very Wise - No question is so difficult to answer as that to which the answer is obvious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4443 - Fairy - A head-banger. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4444 - Fairy - If she wasn't flying she'd have a limp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4445 - Fairy - That arm looks sore. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4446 - Fairy - It's just a flesh wound. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4447 - Rabbit - Aww, how cute. - 1 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 4448 - Rabbit - Aww, how cute. - 1 - 1 - true - false - false - false - 10 - 1 - 1 - 4000 - 422 - 404 - 2304 - 1 - 1 - 1 - 0 - - - 4449 - Butterfly - These look much better in the wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4450 - Butterfly - These look much better in the wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4451 - Starflower - A small, green shoot. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4452 - Starflower - It doesn't look that rare. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4453 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4454 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4455 - Fairy Fixit - Fairy ring maintenance division. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4456 - Ork - Ugly, fierce and with a bad attitude. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4457 - Ork - Ugly, fierce and with a bad attitude. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4458 - Ork - Ugly, fierce and with a bad attitude. - 20 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4459 - Ork - It's an NPC. - 20 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4460 - Fake Man - It's good enough to fool a troll. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4461 - Held vampyre juvinate - A juvinate vampyre, held in a powerful spell. - 90 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4462 - Held vampyre juvinate - A juvinate vampyre, held in a powerful spell. - 119 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4463 - Angry juvinate - An initiate juvenile vampyre; he looks really angry. - 70 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4464 - Angry juvinate - An initiate juvenile vampyre; he looks really angry. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4465 - Angry juvinate - An initiate juvenile vampyre; he looks really angry. - 130 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4466 - Benjamin - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4467 - Liam - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4468 - Miala - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4469 - Verak - A human returned from vampyric form. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4470 - Tree spirit - A very angry nymph. - 14 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4471 - Tree spirit - It's an NPC. - 29 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4472 - Tree spirit - Ugly and bad-tempered. - 49 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4473 - Tree spirit - She seems to doubt the existence of a dragon at all. - 79 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4474 - Tree spirit - This is ready for you to cast magic at it. - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4475 - Tree spirit - An old sailor. - 159 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4476 - Guardian mummy - Who's your mummy? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4477 - Annoyed guardian mummy - Somehow he's managing to look angry. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4478 - Tarik - That's a strange hat for a local. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4479 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4480 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4481 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4482 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4483 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4484 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4485 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4486 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4487 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4488 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4489 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4490 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4491 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4492 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4493 - General Bentnoze - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4494 - General Wartface - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4495 - Null - Smaller than the average goblin - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4496 - Grubfoot - Smaller than the average goblin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4497 - Grubfoot - Smaller than the average goblin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4498 - Grubfoot - Smaller than the average goblin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4499 - Goblin - An ugly goblin... bleurgh! - 5 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4500 - Scarab swarm - I think they're some kind of beetle. - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4501 - Ethereal Man - Is he real or is it just my imagination? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4502 - Ethereal Lady - Does she really exist? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4503 - Ethereal Numerator - He reminds me of my old mathematics teacher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4504 - Ethereal Expert - The master of accomplishment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4505 - Ethereal Perceptive - He knows what is possible. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4506 - Ethereal Guide - He knows the past, present and future. But what of my shoe size? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4507 - Ethereal Fluke - Luck is probably on his side. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4508 - Ethereal Mimic - I wanna be like you-ooo-ooo! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4509 - Me - It's like looking in the mirror. - 79 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4510 - Me - It's like looking in the mirror. - 79 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4511 - Oneiromancer - Spiritual leader of the Moonclan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4512 - House - The craziest house I ever did see! - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4513 - Baba Yaga - An old woman who lives in a very strange house. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4514 - Pauline Polaris - She has a certain twinkle in her eye. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4515 - Meteora - As beautiful as a fallen star... I feel sick. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4516 - Melana Moonlander - Did she just wink at me? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4517 - Selene - In a world of her own. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4518 - Rimae Sirsalis - Not a single hair on her head. But one or two warts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4519 - Sirsal Banker - Glad to be one of only three men on the island. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4520 - Clan Guard - He smells a bit funny. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4521 - Enchanted Broom - How does it see where to sweep? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4522 - Enchanted Broom - A broom driven by magic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4523 - Enchanted Broom - A broom driven by magic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4524 - Enchanted Bucket - I'm not sure if it's actually doing anything of use. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4525 - Enchanted Bucket - I'm not sure if it's actually doing anything of use. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4526 - Bouquet Mac Hyacinth - Should I pronounce it 'bucket'? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4527 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4528 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4529 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4530 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4531 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4532 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4533 - Suqah - A strange creature unique to Lunar Isle. - 111 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4534 - Moss giant - His beard seems to have a life of its own. - 48 - 2 - true - true - false - false - 10 - 1 - 85 - 4000 - 422 - 404 - 2304 - 110 - 110 - 110 - 0 - - - 4535 - Parrot - It's a parrot. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4536 - Lokar Searunner - Oldak's new assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4537 - Lokar Searunner - Either a very fremennikey pirate, or a very piratey fremennik. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4538 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4539 - Cabin boy - I always wondered what that job description actually meant... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4540 - Captain Bentley - The High Priest has been transformed into an avatar of Bandos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4541 - 'Beefy' Burns - A stickler for hygiene in the kitchen. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4542 - 'Eagle-eye' Shultz - A keen-eyed lookout with a telescope. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4543 - First mate 'Davey-boy' - First mate to Captain Bentley. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4544 - 'Birds-Eye' Jack - A pirate that can navigate better than a bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4545 - 'Picarron' Pete - A pirate through and through. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4546 - Jake - A deadly pirate. - 37 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4547 - Bedread the bold - He got his name from his favourite hobby. Reading about beds. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4548 - Wilson - A pirate. - 37 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4549 - Tommy 2-times - Nobody really knows why he's called Tommy 2-times... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4550 - Murky Pat - Don't look him straight in the eyes. He'll eat you alive! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4551 - Jack Sails - Nice beard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4552 - Palmer - Nice shave. - 37 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4553 - 'Betty' B.Boppin - He never stops talking about Betty... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4554 - 'Beedy-eye' Jones - Is he looking at me? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4555 - Jenny Blade - Yes, it is indeed the infamous Jenny Blade! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4556 - 'Lecherous' Lee - A low-down, mean, dirty, cheating pirate with a fondness for kittens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4557 - 'Sticky' Sanders - Apparently his nickname comes from his fondness for jam. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4558 - Hirko - A seller of crossbow parts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4559 - Holoy - A seller of crossbow parts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4560 - Frizzy Skernip - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4561 - Yulf Squecks - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4562 - Praistan Ebola - Perhaps this gardener might look after your crops for you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4563 - Hura - A seller of crossbow parts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4564 - Digsite workman - This person is working on the site. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4565 - Digsite workman - This person is working on the site. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4566 - Examiner - Upon examining the examiner you examine it is indeed an examiner! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4567 - Examiner - Upon examining the examiner you examine it is indeed an examiner! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4568 - Researcher - Must be hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4569 - Nick - A man busily panning. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4570 - Mounted terrorchick gnome - A farmer's enemy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4571 - Terrorchick gnome - A farmer's enemy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4572 - Gianne jnr. - The delivery honcho! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4573 - Timble - An underpayed gnome! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4574 - Tamble - An overworked gnome! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4575 - Spang - A lazy gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4576 - Brambickle - He looks like he's a long way from home. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4577 - Wingstone - He looks like he's a long way from home. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4578 - Penwie - He looks like he's a long way from home. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4579 - Generic Diplomat - He's very diplomatic - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4580 - Ambassador Gimblewap - He's very diplomatic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4581 - Ambassador Spanfipple - Peaceful man! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4582 - Ambassador Ferrnook - Peaceful man! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4583 - Professor Manglethorp - Crazy professor! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4584 - Damwin - Bubbly cheerleader! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4585 - Professor Onglewip - A gnome mage on sabbatical. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4586 - Professor Imblewyn - A visiting gnome mage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4587 - Perrdur - Gnome customer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4588 - Dalila - Gnome customer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4589 - Sorrn - Gnome customer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4590 - Mimm - A female gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4591 - Eebel - A gnome whom likes antiques. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4592 - Ermin - A gnome spinner. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4593 - Portobello - Pilot Veteran. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4594 - Captain Ninto - A gnome pilot off duty, he looks a bit worse for wear... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4595 - Captain Daerkin - A gnome pilot off duty, he looks a bit drunk. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4596 - Captain Lamdoo - A gnome pilot coming to get you! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4597 - Meegle - He looks after the terrorbirds. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4598 - Wurbel - He looks like a big gnomeball fan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4599 - Sarble - She tends the toads and worms in the swamp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4600 - Guard Vemmeldo - He looks alert and ready for action. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4601 - Burkor - A lean mean gnome fighting machine. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4602 - Froono - He looks like he needs something useful to do. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4603 - Fortress Guard - A generic evil henchman. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4604 - Fortress Guard - A generic evil henchman. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4605 - Fortress Guard - A generic evil henchman. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4606 - Fortress Guard - A generic evil henchman. - 20 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 4607 - Black Cat - A witch's black cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4608 - Monk - An unusually aggressive cleric. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4609 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4610 - Brimstail - Small but wise, he is. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4611 - Saboteur - All you see is a glimmer of light and the suggestion of shadow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4612 - Gnome shop keeper - Sells gnomish things. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4613 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4614 - Cute creature - Ahhh. Isn't it cute? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4615 - Evil creature - What is that thing! - 0 - 1 - true - false - false - false - 10 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 0 - - - 4616 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4617 - Cute creature - Ahhh. Isn't it cute? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4618 - Evil creature - What is that thing! - 0 - 1 - true - false - false - false - 10 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 0 - - - 4619 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4620 - Cute creature - Ahhh. Isn't it cute? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4621 - Evil creature - What is that thing! - 0 - 1 - true - false - false - false - 10 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 0 - - - 4622 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4623 - Cute creature - Ahhh. Isn't it cute? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4624 - Evil creature - What is that thing! - 0 - 1 - true - false - false - false - 10 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 0 - - - 4625 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4626 - Cute creature - Ahhh. Isn't it cute? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4627 - Evil creature - What is that thing! - 0 - 1 - true - false - false - false - 10 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 0 - - - 4628 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4629 - Cute creature - Ahhh. Isn't it cute? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4630 - Evil creature - What is that thing! - 0 - 1 - true - false - false - false - 10 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 0 - - - 4631 - Fluffie - A small fluffy inhabitant of the Grand Tree. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4632 - Fluffie - A spy of Glouphrie. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4633 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4634 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4635 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4636 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4637 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4638 - Gnome soldier - A little warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4639 - Gnome soldier - A little warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4640 - Gnome soldier - A little warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4641 - Gnome soldier - A little warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4642 - Gnome soldier - A little warrior. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4643 - Healthorg and tortoise - King Healthorg riding his War Tortoise. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4644 - Oaknock the Engineer - Can he build it? Yes he can! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4645 - Glouphrie the Untrusted - A weasly, shifty-looking Gnome Mage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4646 - King Healthorg - The greatest Gnome King of them all. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4647 - Hazelmere - A familiar looking young gnome. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4648 - Nisha - A woman busily panning. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4649 - Tyras guard - One of King Tyras's men. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4650 - Trader Stan - With the prices he charges, no wonder he can afford to look so sharp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4651 - Trader Crewmember - Looks very stylish, but how can he sail in that gear? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4652 - Trader Crewmember - That suit looks a little briny around the edges. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4653 - Trader Crewmember - First storm he is in that hat will blow away. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4654 - Trader Crewmember - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4655 - Trader Crewmember - High heels on a ship? What is she thinking? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4656 - Trader Crewmember - The effect is sort of spoiled by all those tattoos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4657 - Sir Prysin - One of the king's knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4658 - Dark wizard - He works evil magic. - 7 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4659 - Dark wizard - He works evil magic. - 7 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4660 - Dark wizard - He works evil magic. - 20 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 4661 - Dark wizard - He works evil magic. - 20 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 4662 - Denath - A practicer of dark arts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4663 - Denath - A practicer of dark arts. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4664 - Wally - Wally. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4665 - Baby dragon - Young but still dangerous. - 48 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4666 - Baby dragon - It's an NPC. - 48 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4667 - Baby dragon - Young but still dangerous. - 48 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4668 - Baby dragon - Young but still dangerous. - 48 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4669 - Red dragon - A big powerful dragon. - 152 - 4 - true - true - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 4670 - Red dragon - A big powerful dragon. - 152 - 4 - true - true - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 4671 - Red dragon - A big powerful dragon. - 152 - 4 - true - true - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 4672 - Red dragon - A big powerful dragon. - 152 - 4 - true - true - false - false - 10 - 1 - 140 - 4000 - 422 - 404 - 2304 - 182 - 182 - 182 - 0 - - - 4673 - Black dragon - A fierce dragon with black scales! - 227 - 4 - true - true - false - false - 10 - 1 - 190 - 4000 - 422 - 404 - 2304 - 247 - 247 - 247 - 0 - - - 4674 - Black dragon - A fierce dragon with black scales! - 227 - 4 - true - true - false - false - 10 - 1 - 190 - 4000 - 422 - 404 - 2304 - 247 - 247 - 247 - 0 - - - 4675 - Black dragon - A fierce dragon with black scales! - 227 - 4 - true - true - false - false - 10 - 1 - 190 - 4000 - 422 - 404 - 2304 - 247 - 247 - 247 - 0 - - - 4676 - Black dragon - A fierce dragon with black scales! - 227 - 4 - true - true - false - false - 10 - 1 - 190 - 4000 - 422 - 404 - 2304 - 247 - 247 - 247 - 0 - - - 4677 - Green dragon - Must be related to Elvarg. - 79 - 4 - true - true - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 4678 - Green dragon - Must be related to Elvarg. - 79 - 4 - true - true - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 4679 - Green dragon - Must be related to Elvarg. - 79 - 4 - true - true - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 4680 - Green dragon - Must be related to Elvarg. - 79 - 4 - true - true - false - false - 10 - 1 - 75 - 4000 - 422 - 404 - 2304 - 97 - 97 - 97 - 0 - - - 4681 - Blue dragon - A mother dragon. - 111 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4682 - Blue dragon - A mother dragon. - 111 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4683 - Blue dragon - A mother dragon. - 111 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4684 - Blue dragon - A mother dragon. - 111 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4685 - Ice giant - He's got icicles in his beard. - 53 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4686 - Ice giant - He's got icicles in his beard. - 53 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4687 - Ice giant - He's got icicles in his beard. - 53 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4688 - Moss giant - His beard seems to have a life of its own. - 42 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4689 - Hill Giant - A very large foe. - 28 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4690 - Hill Giant - A very large foe. - 28 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4691 - Hill Giant - A very large foe. - 28 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4692 - Hill Giant - A very large foe. - 28 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4693 - Hill Giant - A very large foe. - 28 - 2 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4694 - Lesser demon - Lesser, but still pretty big. - 82 - 2 - true - true - false - false - 10 - 1 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - - 4695 - Lesser demon - Lesser, but still pretty big. - 82 - 2 - true - true - false - false - 10 - 1 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - - 4696 - Lesser demon - Lesser, but still pretty big. - 82 - 2 - true - true - false - false - 10 - 1 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - - 4697 - Lesser demon - Lesser, but still pretty big. - 82 - 2 - true - true - false - false - 10 - 1 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - - 4698 - Greater demon - Big, purple, and incredibly evil. - 92 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4699 - Greater demon - Big, red, and incredibly evil. - 92 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4700 - Greater demon - Big, red, and incredibly evil. - 92 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4701 - Greater demon - Big, red, and incredibly evil. - 92 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4702 - Black Demon - A big, scary, jet-black demon. - 172 - 3 - true - true - false - false - 10 - 1 - 157 - 4000 - 422 - 404 - 2304 - 204 - 204 - 204 - 0 - - - 4703 - Black Demon - A big, scary, jet-black demon. - 172 - 3 - true - true - false - false - 10 - 1 - 157 - 4000 - 422 - 404 - 2304 - 204 - 204 - 204 - 0 - - - 4704 - Black Demon - A big, scary, jet-black demon. - 172 - 3 - true - true - false - false - 10 - 1 - 157 - 4000 - 422 - 404 - 2304 - 204 - 204 - 204 - 0 - - - 4705 - Black Demon - A big, scary, jet-black demon. - 172 - 3 - true - true - false - false - 10 - 1 - 157 - 4000 - 422 - 404 - 2304 - 204 - 204 - 204 - 0 - - - 4706 - Moss giant - His beard seems to have a life of its own. - 48 - 2 - true - true - false - false - 10 - 1 - 85 - 4000 - 422 - 404 - 2304 - 110 - 110 - 110 - 0 - - - 4707 - Magic combat tutor - Mikasi, ready to teach you about Magic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4708 - Old Man Ral - A flea-infested, pale-looking excuse for a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4709 - Vertida Sefalatis - A quiet, war-weary man with the keen eye of a ranger. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4710 - Aeonisig Raispher - Roald's advisor - he seems to be a follower of Saradomin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4711 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4712 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4713 - Safalaan - A tall, charismatic man of unusual appearance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4714 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4715 - Sarius Guile - She looks important. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4716 - Trader Sven - A flea-infested black market trader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4717 - Meiyerditch citizen - A flea-infested, pale-looking excuse for a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4718 - Meiyerditch citizen - A flea-infested, pale-looking excuse for a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4719 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4720 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4721 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4722 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4723 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4724 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4725 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4726 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4727 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4728 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4729 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4730 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4731 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4732 - Meiyerditch citizen - A flea-infested, pale-looking excuse for a woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4733 - Meiyerditch citizen - A flea-infested, pale-looking excuse for a woman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4734 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4735 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4736 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4737 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4738 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4739 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4740 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4741 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4742 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4743 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4744 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4745 - Meiyerditch citizen - This citizen looks pale, tired and old! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4746 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4747 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4748 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4749 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4750 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4751 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4752 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4753 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4754 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4755 - A Meiyerditch child - A poor street urchin! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4756 - Meiyerditch miner - This citizen looks dirty and tired! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4757 - Meiyerditch miner - This citizen looks dirty and tired! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4758 - Meiyerditch miner - This citizen looks dirty and tired! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4759 - Meiyerditch miner - This citizen looks dirty and tired! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4760 - Meiyerditch miner - This citizen looks dirty and tired! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4761 - Meiyerditch miner - This citizen looks dirty and tired! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4762 - Shadowy figure - A shadowy biped - seems to be covered in fur, with a long snout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4763 - Shadowy figure - A shadowy biped - seems to be covered in fur, with a long snout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4764 - Shadowy figure - A shadowy biped - seems to be covered in fur, with a long snout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4765 - Null - Some rubbish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4766 - Stray dog - Looks like it's got fleas! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4767 - Stray dog - Looks like it's got fleas! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4768 - Cat - A smelly cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4769 - Cat - A smelly cat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4770 - Boat - It's an NPC. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4771 - Boat - It looks seaworthy now. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4772 - Juvinate guard - An initiate juvenile vampyre; a guard for the mining area. - 54 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4773 - Juvinate guard - An initiate juvenile vampyre; a guard for the mining area. - 54 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4774 - Vampyre juvenile - A juvenile vampyre. - 45 - 1 - true - false - true - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 4775 - Vampyre juvenile - A juvenile vampyre. - 45 - 1 - true - false - true - false - 10 - 1 - 0 - 4000 - 422 - 404 - 2304 - 0 - 0 - 0 - 0 - - - 4776 - Vampyre juvinate - It's an NPC. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4777 - Vampyre juvinate - It's an NPC. - 54 - 1 - true - true - true - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4778 - Held vampyre juvenile - A juvenile vampyre. - 54 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4779 - Held vampyre juvenile - A juvenile vampyre. - 54 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4780 - Held vampyre juvinate - An initiate juvenile vampyre; seems to be a servant. - 54 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4781 - Held vampyre juvinate - An initiate juvenile vampyre. - 54 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4782 - Vampyre juvinate - An initiate juvenile; seems to be a vampyre. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4783 - Former vampyre - Has been returned from vampyric form to human. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4784 - Former vampyre - Has been returned from vampyric form to human. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4785 - Former vampyre - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4786 - Former vampyre - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4787 - Former vampyre - Has been returned from vampyric form to human. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4788 - Former vampyre - Has been returned from vampyric form to human. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4789 - Angry vampyre - It's an NPC. - 64 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4790 - Angry vampyre - An enraged vampyre! - 64 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4791 - Vanstrom Klause - A curious fellow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4792 - Vanstrom Klause - A curious fellow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4793 - Vanstrom Klause - A curious fellow. - 169 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4794 - Vanstrom Klause - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4795 - Vanstrom Klause - A thirsty-looking airborne bloodsucker! - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4796 - Vanstrom Klause - A thirsty-looking, airborne bloodsucker! - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4797 - Vanescula Drakan - She seems almost human. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4798 - Vanescula Drakan - She seems almost human. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4799 - Vanescula Drakan - A female vampyre of incredible power. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4800 - Vanescula Drakan - A female vampyre of incredible power. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4801 - Ranis Drakan - He looks haughty and arrogant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4802 - Ranis Drakan - He looks haughty and arrogant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4803 - Ranis Drakan - He looks haughty and arrogant. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4804 - Ranis Drakan - He looks haughty and arrogant. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4805 - Vyrewatch - An evil, bloodsucking vampyre. - 105 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4806 - Vyrewatch - An evil, bloodsucking vampyre. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4807 - Vyrewatch - An evil, bloodsucking vampyre. - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4808 - Vyrewatch - An evil, bloodsucking vampyre. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4809 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4810 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4811 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4812 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4813 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4814 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4815 - Vyrewatch - An evil, bloodsucking vampyre. - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4816 - Vyrewatch - An evil, bloodsucking vampyre. - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4817 - Vyrewatch - An evil, bloodsucking vampyre. - 105 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4818 - Vyrewatch - An evil, bloodsucking vampyre. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4819 - Vyrewatch - An evil, bloodsucking vampyre. - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4820 - Vyrewatch - An evil, bloodsucking vampyre. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4821 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4822 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4823 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4824 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4825 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4826 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4827 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4828 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4829 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4830 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4831 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4832 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4833 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4834 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4835 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4836 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4837 - Vyrewatch - An evil, bloodsucking vampyre. - 105 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4838 - Vyrewatch - An evil, bloodsucking vampyre. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4839 - Vyrewatch - An evil, bloodsucking vampyre. - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4840 - Vyrewatch - An evil, bloodsucking vampyre. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4841 - Vyrewatch - An evil, bloodsucking vampyre. - 105 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4842 - Vyrewatch - An evil, bloodsucking vampyre. - 110 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4843 - Vyrewatch - An evil, bloodsucking vampyre. - 120 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4844 - Vyrewatch - An evil, bloodsucking vampyre. - 125 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4845 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4846 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4847 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4848 - Flying female vampire - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4849 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 105 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4850 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 110 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4851 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 120 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4852 - Vyrewatch - A thirsty-looking, airborne bloodsucker! - 125 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4853 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4854 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4855 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4856 - Ezekial Lovecraft - Smells a bit fishy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4857 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4858 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4859 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4860 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4861 - Sarius Guile - She looks important. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4862 - Vanstrom Klause - A curious fellow. - 169 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4863 - Kennith - He looks very scared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4864 - Kennith - He looks very scared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4865 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4866 - Holgart - A very good sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4867 - Holgart - A very good sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4868 - Holgart - A very good sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4869 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4870 - Fisherman - He smells of salty fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4871 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4872 - Col. O'Niall - A (semi) retired member of the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4873 - Col. O'Niall - A (semi) retired member of the Temple Knights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4874 - Mayor Hobb - There's something fishy about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4875 - Mayor Hobb - There's something fishy about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4876 - Null - There's something fishy about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4877 - Null - There's something fishy about him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4878 - Brother Maledict - A fresh-faced and innocent priest. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4879 - Brother Maledict - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4880 - Null - A fresh-faced and innocent priest. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4881 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4882 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4883 - Witchaven villager - A down on his luck fisherman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4884 - Witchaven villager - A down on his luck fisherman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4885 - Witchaven villager - A down on her luck villager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4886 - Witchaven villager - A down on her luck villager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4887 - Witchaven villager - A down on his luck villager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4888 - Witchaven villager - A down on his luck villager. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4889 - Mother Mallum - An unspeakable horror from the depths of time. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4890 - Slug Prince - A child of aquatic evil. - 62 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4891 - Null - It's an NPC. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4892 - Giant lobster - Not very tasty. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4893 - Giant Lobster - An extremely vicious lobster. - 45 - 2 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4894 - Sea slug - A rather nasty looking crustacean. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4895 - Jeb - A villager named Jeb. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4896 - Jeb - A villager named Jeb. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4897 - Sir Tinley - A Temple Knight agent. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4898 - Hobgoblin - An ugly, smelly creature wielding a spear. - 28 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 4899 - Cooking tutor - Cordero, ready to teach you how to cook. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4900 - Crafting tutor - Cadmus, looking a little bit crafty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4901 - Fishing tutor - Finlay, mending a crayfish cage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4902 - Mining tutor - Monlum, prospecting rocks. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4903 - Prayer tutor - Yauchomi, a follower of Saradomin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4904 - Smithing apprentice - Feoras, looking a bit fiery. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4905 - Master smithing tutor - Sani, a master smith. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4906 - Woodsman tutor - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4907 - Banker tutor - Barb, ready to teach you about banking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4908 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4909 - Fritz the Glassblower - His motives are see-through. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4910 - Earth elemental - It's an NPC. - 35 - 1 - true - false - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 4911 - Elemental rock - An elemental rock. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4912 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4913 - Jig cart - A cart with a jig built into it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4914 - Jig cart - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4915 - Jig cart - A cart with a jig built into it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4916 - Jig cart - A cart with a jig built into it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4917 - Jig cart - A cart with a jig built into it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4918 - Jig cart - A cart with a jig built into it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4919 - Abidor Crank - The good samaritan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4920 - Giant crypt rat - A nasty overgrown rodent. - 76 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4921 - Giant crypt rat - A nasty overgrown rodent. - 76 - 2 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 4922 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 4923 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 4924 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 4925 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 4926 - Giant rat - Overgrown vermin. - 6 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 138 - 139 - 141 - 13 - 13 - 13 - 0 - - - 4927 - Giant rat - Overgrown vermin. - 6 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 138 - 139 - 141 - 13 - 13 - 13 - 0 - - - 4928 - Dungeon rat - Overgrown vermin. - 12 - 2 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4929 - Dungeon rat - Overgrown vermin. - 12 - 2 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4930 - Goat - They'll eat anything! - 23 - 1 - true - false - false - false - 10 - 1 - 21 - 4000 - 422 - 404 - 2304 - 27 - 27 - 27 - 0 - - - 4931 - Goat - They'll eat anything! - 23 - 1 - true - false - false - false - 10 - 1 - 21 - 4000 - 422 - 404 - 2304 - 27 - 27 - 27 - 0 - - - 4932 - Billy Goat - They'll eat anything! - 33 - 1 - true - false - false - false - 10 - 1 - 28 - 4000 - 422 - 404 - 2304 - 36 - 36 - 36 - 0 - - - 4933 - Goat - They'll eat anything! - 23 - 1 - true - false - false - false - 10 - 1 - 21 - 4000 - 422 - 404 - 2304 - 27 - 27 - 27 - 0 - - - 4934 - Goat - They'll eat anything! - 23 - 1 - true - false - false - false - 10 - 1 - 21 - 4000 - 422 - 404 - 2304 - 27 - 27 - 27 - 0 - - - 4935 - Billy Goat - They'll eat anything! - 33 - 1 - true - false - false - false - 10 - 1 - 28 - 4000 - 422 - 404 - 2304 - 36 - 36 - 36 - 0 - - - 4936 - Dungeon rat - A dirty rat. - 12 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4937 - Dungeon rat - A dirty rat. - 12 - 1 - true - false - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 4938 - Angry giant rat - He looks a little on the cross side! - 45 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 138 - 139 - 141 - 13 - 13 - 13 - 0 - - - 4939 - Angry giant rat - He looks a little on the cross side! - 45 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 138 - 139 - 141 - 13 - 13 - 13 - 0 - - - 4940 - Angry giant rat - He looks a little on the cross side! - 47 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 138 - 139 - 141 - 65 - 65 - 0 - - - 4941 - Blessed giant rat - It's one of Iban's pet vermin. - 9 - 2 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 4942 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 4943 - Giant rat - Overgrown vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 5 - 4000 - 138 - 139 - 141 - 6 - 6 - 6 - 0 - - - 4944 - Giant rat - Overgrown vermin. - 26 - 2 - true - true - false - false - 10 - 1 - 25 - 4000 - 138 - 139 - 141 - 32 - 32 - 32 - 0 - - - 4945 - Giant rat - Overgrown vermin. - 26 - 2 - true - true - false - false - 10 - 1 - 25 - 4000 - 138 - 139 - 141 - 32 - 32 - 32 - 0 - - - 4946 - Ignatius Vulcan - The Master of Fire! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4947 - My Arm - Trollish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4948 - My Arm - Trollish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4949 - My Arm - Trollish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4950 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4951 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4952 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4953 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4954 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4955 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4956 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4957 - My Arm - He's poking his farming patch with my dibber. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4958 - My Arm - He has a bucket and he's not afraid to use it. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4959 - My Arm - My rake is in the hand of My Arm. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4960 - Adventurer - He's in a pretty nasty spot, in a pretty nasty pot. With some cabbage. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4961 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4962 - Captain Barnaby - An old sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4963 - Murcaily - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4964 - Jagbakoba - A native of Tai Bwo Wannai. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4965 - Tool Leprechaun - It's a leprechaun sunbathing on a mountain. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4966 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4967 - Flies - They like to hover around bad smells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4968 - Unnamed troll child - A little troll who has no name. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4969 - Drunken dwarf's leg - Named after the first thing he tried to eat... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4970 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4971 - Baby Roc - A mountain-dwelling bird. Cute, but vicious. - 75 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 4972 - Giant Roc - A very, very large mountain-dwelling bird. - 172 - 5 - true - true - false - false - 10 - 1 - 200 - 4000 - 422 - 404 - 2304 - 260 - 260 - 260 - 0 - - - 4973 - Shadow - Something nasty this way comes... - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4974 - Captain Barnaby - An old sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4975 - Male slave - It looks like he's been here a long time. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4976 - Male slave - It looks like he's been here a long time. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4977 - Female slave - She looks like she's been down here a long time. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4978 - Female slave - She looks like she's been down here a long time. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4979 - Cart Camel - A big strong camel, used for pulling carts full of minerals. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4980 - Mine Cart - It's Ana... in a barrel... in a mine cart. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4981 - Mine Cart - It's an empty mine cart. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4982 - Ana - Stuffed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4983 - Mercenary - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4984 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4985 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4986 - Null - A resident of Al-Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4987 - Null - A resident of Al-Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4988 - Irena - A resident of Al-Kharid. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 4989 - Mercenary - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4990 - Mercenary - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4991 - Mercenary - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4992 - Mercenary - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 4993 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4994 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4995 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4996 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4997 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4998 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 4999 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5000 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5001 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5002 - Guard - He looks a bit aggressive. - 45 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5003 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5004 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5005 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5006 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5007 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5008 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5009 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5010 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5011 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5012 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5013 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5014 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5015 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5016 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5017 - Gublinch - A sweaty gublinch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5018 - Gublinch - A chilled, smelly gublinch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5019 - Gublinch - A freezing cold gublinch. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5020 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5021 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5022 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5023 - Jack - A happy child, now that he has been freed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5024 - Jill - A happy child, now that she has been freed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5025 - Jeff - A happy child, now that he has been freed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5026 - Egg launcher - An egg launcher! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5027 - Egg launcher - An egg launcher! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5028 - Egg launcher - An egg launcher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5029 - Commander Connad - A slightly more approachable barbarian. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5030 - Captain Cain - He looks pretty mean. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5031 - Private Paldo - A stressed out barbarian private. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5032 - Private Pendron - A barbarian private. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5033 - Private Pierreb - A barbarian private. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5034 - Private Paldon - A barbarian private. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5035 - Major Attack - A barbarian army teacher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5036 - Major Collect - A barbarian army teacher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5037 - Major Defend - A barbarian army teacher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5038 - Major Heal - A barbarian army teacher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5039 - Sergeant Sambur - He's keeping a close eye on that nearby door. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5040 - Penance Fighter - What on Wildy is that? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5041 - Penance Ranger - Shooty-shooty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5042 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5043 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5044 - Penance Fighter - What on Wildy is that? - 30 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5045 - Penance Fighter - What on Wildy is that? - 32 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5046 - Jack - A happy child playing with his friends. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5047 - Jill - A happy child playing with her friends. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5048 - Jeff - A happy child playing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5049 - Auguste - Balloonist extraordinaire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5050 - Auguste - Balloonist extraordinaire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5051 - Auguste - Balloonist extraordinaire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5052 - Auguste - Balloonist extraordinaire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5053 - Assistant Serf - A helpful assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5054 - Assistant Brock - A helpful assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5055 - Assistant Marrow - A helpful assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5056 - Assistant Le Smith - A helpful assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5057 - Assistant Stan - A helpful assistant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5058 - Bob - He doesn't like change. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5059 - Curly - He's an angry man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5060 - Moe - Not much to look at. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5061 - Larry - Not fond of witches. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5062 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5063 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5064 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5065 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5066 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5067 - Shark - Time to run away... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5068 - Shark - Time to run away... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5069 - Shark - Time to run away... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5070 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5071 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5072 - Tropical wagtail - It blends in very well with its surroundings. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5073 - Crimson swift - This bird obviously doesn't believe in subtlety. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5074 - Cerulean twitch - Best served ice cold. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5075 - Golden warbler - Actually, golden screecher might be a more appropriate name. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5076 - Copper longtail - Nothing much to get in a flap about. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5077 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5078 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5079 - Chinchompa - It looks fluffy and cute; it's probably deadly. - 1 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5080 - Carnivorous chinchompa - It looks fluffy and cute; it's probably deadly. - 2 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5081 - Ferret - Wild. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5082 - Black warlock - A black warlock. The air seems to distort wherever it passes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5083 - Snowy knight - It's a snowy knight butterfly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5084 - Sapphire glacialis - A sapphire glacialis. It doesn't look as pretentious as its name sounds. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5085 - Ruby harvest - It's a ruby harvest butterfly. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5086 - Prickly kebbit - Curls up into a ball to protect itself from attack. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5087 - Sabre-toothed kebbit - Now that's a big overbite. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5088 - Barb-tailed kebbit - It uses its tail to hunt and skewer fish. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5089 - Wild kebbit - That's a mean looking set of claws. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5090 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5091 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5092 - Matthias - He's wearing a single glove; how strange. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5093 - Matthias - He's wearing a single glove; how strange. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5094 - Gyr Falcon - It looks like it has caught something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5095 - Gyr Falcon - It looks like it has caught something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5096 - Gyr Falcon - It looks like it has caught something. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5097 - Gyr Falcon - A trained hunting bird. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5098 - Spotted kebbit - It seems to be on a permanent sugar rush. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5099 - Dark kebbit - Quieter than a ninja mouse with slippers on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5100 - Dashing kebbit - Now you see it; now you don't. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5101 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5102 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5103 - Sabre-toothed kyatt - It's just like a big, white, furry, deadly can opener. - 60 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5104 - Spined larupia - If you tried to ride that, you'd just impale yourself! - 40 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5105 - Horned graahk - Get in a graahk's way and you're going to know about it...however briefly. - 50 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5106 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5107 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5108 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5109 - Artimeus - He looks like he knows what he's doing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5110 - Aleck - He acts as if he owns the place. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5111 - Leon - He seems to be making odd sucking noises with his teeth. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5112 - Hunting expert - He must be good at hunting; even his hair blends in with the surroundings. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5113 - Hunting expert - With all the furs, I almost mistook her for a wild animal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5114 - Orange salamander - Slightly slimy but kind of cute. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5115 - Red salamander - Slightly slimy but certainly striking. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5116 - Black salamander - Slightly slimy and somewhat menacing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5117 - Swamp lizard - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5118 - Null - Very slimy and generally disgusting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5119 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5120 - Eagle - A very large, very dangerous-looking birdy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5121 - Eagle - A very large, very dangerous, very sandy-looking birdy. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5122 - Eagle - A very large, very dangerous-looking birdy. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5123 - Eagle - A very large, very dangerous, very cold-looking birdy. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5124 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5125 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5126 - Nickolaus - He looks a bit worse for wear, but he seems cheerful enough. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5127 - Nickolaus - He looks a bit worse for wear, but he seems cheerful enough. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5128 - Nickolaus - He looks a bit worse for wear, but he seems cheerful enough. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5129 - Nickolaus - He looks like an eagle with no fashion sense. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5130 - Desert eagle - A very large, very dangerous, very sandy-looking birdy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5131 - Jungle eagle - A very large, very dangerous-looking birdy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5132 - Polar eagle - A very large, very dangerous, very cold-looking birdy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5133 - Eagle - It seems to be protecting the nest. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5134 - Null - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5135 - Null - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5136 - Null - It's an NPC. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5137 - Kebbit - A little bigger than usual... - 13 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5138 - Charlie - One of the zookeepers; enjoys locking up animals in small pens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5139 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5140 - Boulder - Now, who put that there? It's too suspicious and round to be natural. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5141 - Uri - Uri Molotov - shaken, not stirred. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5142 - Uri - Uri Molotov - shaken, not stirred. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5143 - Uri - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5144 - Double agent - He's playing both sides! - 65 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5145 - Double agent - He's playing both sides! - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5146 - Li'l lamb - How cute! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5147 - Lamb - The black sheep of the family. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5148 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5149 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5150 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5151 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5152 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5153 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5154 - Sheep - White and shaggy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5155 - Sheep - White and shaggy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5156 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5157 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5158 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5159 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5160 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5161 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5162 - Sheep - White and shaggy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5163 - Sheep - White and shaggy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5164 - Sheep - White and fluffy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5165 - Sheep - Freshly sheared. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5166 - Mountain Goat - This goat belongs to the mountain camp people. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5167 - Mountain Goat - This goat belongs to the mountain camp people. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5168 - Ram - White and fluffy. - 2 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 5169 - Ram - White and fluffy. - 2 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 5170 - Ram - White and shaggy. - 2 - 1 - true - false - false - false - 10 - 1 - 8 - 4000 - 422 - 404 - 2304 - 10 - 10 - 10 - 0 - - - 5171 - Mountain goat - This beast doesn't need climbing boots. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5172 - Golden sheep - Freshly shorn. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5173 - Golden sheep - Lovely thick wool. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5174 - Ogre chieftain - Tough-looking. - 81 - 2 - false - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5175 - Null - It's an NPC. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5176 - Ogre shaman - Seems intelligent... for an ogre. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5177 - Ogre shaman - Seems intelligent... for an ogre. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5178 - Blue dragon - A mother dragon. - 27 - 4 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5179 - Ogre shaman - It's a tree gnome. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5180 - Null - Seems intelligent... for an ogre. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5181 - Ogre shaman - Seems intelligent... for an ogre. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5182 - Ogre shaman - It's a tree gnome. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5183 - Null - Seems intelligent... for an ogre. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5184 - Ogre shaman - Seems intelligent... for an ogre. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5185 - Ogre shaman - He's in no state to rule a kingdom. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5186 - Null - Seems intelligent... for an ogre. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5187 - Ogre shaman - Seems intelligent... for an ogre. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5188 - Ogre shaman - It's Nial, turned into a yeti. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5189 - Null - Seems intelligent... for an ogre. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5190 - Ogre shaman - Seems intelligent... for an ogre. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5191 - Ogre shaman - A snappy man in an even snappier blazer. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5192 - Null - Seems intelligent... for an ogre. - 1 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5193 - Ogre shaman - Seems intelligent... for an ogre. - 113 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5194 - Ogre shaman - A snappy man in an even snappier blazer. - 113 - 2 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5195 - Wizard - A wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5196 - Wizard - A wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5197 - Wizard - A wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5198 - Ava - She's watching you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5199 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5200 - Witch - The hat's a dead giveaway. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5201 - Null - The hat's a dead giveaway. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5202 - Alice's husband - Alice's husband, passed on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5203 - Alice's husband - Alice's husband, passed on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5204 - Alice's husband - Alice's husband, passed on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5205 - Alice's husband - Alice's husband, passed on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5206 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5207 - Tree - Its bark is worse than its swipe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5208 - Undead tree - Its bark is worse than its swipe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5209 - Sneaky undead fowl - Probably tastes like chicken. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5210 - Cow31337Killer - He hates cows so much. - 123 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5211 - Undead cow - It's an undead cow. - 2 - 2 - false - false - true - false - 10 - 1 - 8 - 4000 - 59 - 60 - 62 - 10 - 10 - 10 - 0 - - - 5212 - Alice - She sells Farming equipment. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5213 - Penance Fighter - What on Wildy is that? - 37 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5214 - Penance Fighter - What on Wildy is that? - 42 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5215 - Penance Fighter - What on Wildy is that? - 47 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5216 - Penance Fighter - What on Wildy is that? - 56 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5217 - Penance Fighter - What on Wildy is that? - 61 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5218 - Penance Fighter - What on Wildy is that? - 68 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5219 - Penance Fighter - What on Wildy is that? - 77 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5220 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5221 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5222 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5223 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5224 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5225 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5226 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5227 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5228 - Penance Runner - He's making a run for it! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5229 - Penance Ranger - Shooty-shooty. - 21 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5230 - Penance Ranger - Shooty-shooty. - 25 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5231 - Penance Ranger - Shooty-shooty. - 32 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5232 - Penance Ranger - Shooty-shooty. - 38 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5233 - Penance Ranger - Shooty-shooty. - 43 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5234 - Penance Ranger - Shooty-shooty. - 51 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5235 - Penance Ranger - Shooty-shooty. - 57 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5236 - Penance Ranger - It's an NPC. - 64 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5237 - Penance Ranger - Shooty-shooty. - 72 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5238 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5239 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5240 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5241 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5242 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5243 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5244 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5245 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5246 - Penance Healer - A nasty piece of work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5247 - Penance Queen - Run away! Run away! - 209 - 5 - true - true - false - false - 10 - 1 - 250 - 4000 - 422 - 404 - 2304 - 325 - 325 - 325 - 0 - - - 5248 - Queen spawn - What's it looking at? - 63 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5249 - Captain Errdo - He looks embarrassed - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5250 - Scarab mage - Part scarab, part man. - 93 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5251 - Locust rider - A mounted lancer. - 106 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5252 - Locust rider - A mounted archer. - 98 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5253 - Giant scarab - A huge scarab beast. - 191 - 3 - true - true - false - true - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 5254 - Scarab mage - Part scarab, part man. - 66 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5255 - Locust rider - A mounted lancer. - 68 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5256 - Locust rider - A mounted archer. - 68 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5257 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5258 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5259 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5260 - Banker - She can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5261 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5262 - Stone mason - A stonemason. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5263 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5264 - Nathifa - The baker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5265 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5266 - Urbi - Dagger seller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5267 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5268 - Jamila - Runs the craft stall. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5269 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5270 - Sophanem guard - A guard of Sophanem. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5271 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5272 - Sophanem guard - A guard of Sophanem. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5273 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5274 - Sophanem guard - A guard of Sophanem. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5275 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5276 - Sophanem guard - A guard of Sophanem. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5277 - Menaphite guard - A guard of Menaphos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5278 - Coenus - A guard of Menaphos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5279 - Jex - Preach, my brother! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5280 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5281 - Maisa - Not a very convincing disguise. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5282 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5283 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5284 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5285 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5286 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5287 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5288 - Embalmer - A strange-smelling merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5289 - Carpenter - A block of a man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5290 - Linen worker - A dedicated follower of fashion. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5291 - Priest - Preach, my brother! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5292 - Giant scarab - A huge scarab beast. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5293 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5294 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5295 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5296 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5297 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5298 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5299 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5300 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5301 - Zombie - Dead woman walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5302 - Zombie - Dead woman walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5303 - Zombie - Dead woman walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5304 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5305 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5306 - Zombie - Dead woman walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5307 - Zombie - Dead man walking. - 13 - 1 - true - false - false - false - 10 - 1 - 23 - 4000 - 422 - 404 - 2304 - 29 - 29 - 29 - 0 - - - 5308 - Zombie - Dead man walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5309 - Zombie - Dead man walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5310 - Zombie - Dead man walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5311 - Zombie - Dead man walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5312 - Zombie - Dead woman walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5313 - Zombie - Dead woman walking. - 18 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5314 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5315 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5316 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5317 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5318 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5319 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5320 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5321 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5322 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5323 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5324 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5325 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5326 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5327 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5328 - Zombie - The walking dead. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5329 - Zombie - The walking dead. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5330 - Zombie - The walking dead. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5331 - Zombie - The walking dead. - 25 - 1 - true - false - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5332 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 5333 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 5334 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 5335 - Skeleton - Could do with gaining a few pounds. - 21 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5336 - Skeleton - Could do with gaining a few pounds. - 21 - 1 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5337 - Skeleton - Could do with gaining a few pounds. - 25 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5338 - Skeleton - Could do with gaining a few pounds. - 25 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5339 - Skeleton - Could do with gaining a few pounds. - 25 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5340 - Skeleton - Could do with gaining a few pounds. - 25 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5341 - Skeleton - Could do with gaining a few pounds. - 45 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 5342 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5343 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5344 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5345 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5346 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5347 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5348 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5349 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5350 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5351 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5352 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 5353 - Undead one - A minion of Rashiliyia. - 68 - 1 - true - true - false - false - 10 - 1 - 47 - 4000 - 422 - 404 - 2304 - 61 - 61 - 61 - 0 - - - 5354 - Undead one - A minion of Rashiliyia. - 61 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5355 - Undead one - The animated dead; one of Rashiliyia's minions. - 68 - 1 - true - true - false - false - 10 - 1 - 47 - 4000 - 422 - 404 - 2304 - 61 - 61 - 61 - 0 - - - 5356 - Undead one - The animated dead; one of Rashiliyia's minions. - 68 - 1 - true - true - false - false - 10 - 1 - 47 - 4000 - 422 - 404 - 2304 - 61 - 61 - 61 - 0 - - - 5357 - Undead one - The animated dead; one of Rashiliyia's minions. - 73 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 5358 - Undead one - The animated dead; one of Rashiliyia's minions. - 73 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 5359 - Giant skeleton - A giant skeleton. - 80 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5360 - Mummy ashes - A tightly wrapped monster. - 96 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5361 - Null - A fiendish embodiment of water. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5362 - Null - It appears intelligent and savage. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5363 - Null - Experimenting with mithril gone bad! - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5364 - Null - He looks about, blankly. - -1 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5365 - Skeleton - Could do with gaining a few pounds. - 60 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5366 - Skeleton - Could do with gaining a few pounds. - 60 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5367 - Skeleton - Could do with gaining a few pounds. - 85 - 1 - true - true - false - false - 10 - 1 - 78 - 4000 - 422 - 404 - 2304 - 101 - 101 - 101 - 0 - - - 5368 - Skeleton - It's an NPC. - 85 - 1 - true - true - false - false - 10 - 1 - 78 - 4000 - 422 - 404 - 2304 - 101 - 101 - 101 - 0 - - - 5369 - Ghost - Eeek! A ghost! - 77 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 5370 - Ghost - It's an NPC. - 77 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 5371 - Ghost - Eeek! A ghost! - 77 - 1 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 5372 - Ghost - Eeek! A ghost! - 76 - 1 - true - true - false - false - 10 - 1 - 74 - 4000 - 422 - 404 - 2304 - 96 - 96 - 96 - 0 - - - 5373 - Ghost - Eeek! A ghost! - 76 - 1 - true - true - false - false - 10 - 1 - 74 - 4000 - 422 - 404 - 2304 - 96 - 96 - 96 - 0 - - - 5374 - Ghost - Eeek! A ghost! - 76 - 1 - true - true - false - false - 10 - 1 - 74 - 4000 - 422 - 404 - 2304 - 96 - 96 - 96 - 0 - - - 5375 - Zombie - Dead man walking. - 30 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5376 - Zombie - Dead man walking. - 30 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 5377 - Zombie - Dead man walking. - 44 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 5378 - Zombie - Dead man walking. - 44 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 5379 - Zombie - The walking dead. - 53 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5380 - Zombie - The walking dead. - 53 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5381 - Skeleton - Could do with gaining a few pounds. - 77 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5382 - Animated steel armour - Animated steel armour. - 53 - 1 - true - true - true - false - 10 - 10 - 40 - 4000 - 451 - 404 - 2304 - 20 - 20 - 20 - 20 - - - 5383 - Odovacar - A roving banker. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5384 - Giant skeleton - A giant skeleton or a giant's skeleton? - 100 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5385 - Skeleton - A skeleton in a dress! - 94 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5386 - Skeleton - Achingly thin. - 77 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5387 - Skeleton - Look another skeleton. - 81 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5388 - Skeleton - That skeleton's grinning at me. - 42 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5389 - Skeleton - He needs a tan. - 59 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5390 - Skeleton - How do you know if a skeleton's male or female? - 42 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5391 - Skeleton - He obviously hasn't realised he's dead. - 63 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5392 - Skeleton - Put some meat on those bones! - 40 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5393 - Zombie - Could his name be 'Lurch'? - 40 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5394 - Zombie - Mostly 'armless. - 42 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5395 - Zombie - Has anybody told him he's dead? - 47 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5396 - Zombie - Dave? Is that you? - 50 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5397 - Zombie - Why don't zombies ever wash? - 56 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5398 - Zombie - A shambling pile of rotten flesh. - 61 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5399 - Zombie - He needs lessons on walking. - 67 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5400 - Zombie - Fred, the undead. - 70 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5401 - Zombie - One of the undead. - 72 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5402 - Zombie - A disgusting zombie. - 76 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5403 - Zombie - Somebody tell him he's already dead! - 80 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5404 - Zombie - He sure looks grave. - 85 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5405 - Zombie - Can't a body get any rest around here? - 86 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5406 - Zombie - At least he's not legless. - 90 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5407 - Zombie - All skin and bones. - 95 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5408 - Zombie - Why zombies? Why now? - 98 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5409 - Zombie - A rotten one. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5410 - Zombie - Brains... - 81 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5411 - Skeleton - An angry skeleton. - 72 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5412 - Skeleton - Cross bones. - 87 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5413 - Possessed pickaxe - How does it move of its own accord? - 50 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 5414 - Animated spade - How does it move of its own accord? - 50 - 1 - true - true - false - false - 10 - 1 - 40 - 4000 - 422 - 404 - 2304 - 52 - 52 - 52 - 0 - - - 5415 - Terror dog statue - A terrifying statue. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5416 - Terror dog statue - A terrifying statue. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5417 - Terror dog - A terrifying dog beast. - 110 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5418 - Terror dog - A terrifying dog beast. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5419 - Tarn - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5420 - Tarn - A mad man. - 69 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5421 - Mutant tarn - I preferred him when he was human. - 69 - 3 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5422 - Skeleton - Could do with gaining a few pounds. - 77 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5423 - Null - A naturalist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5424 - Larry - A naturalist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5425 - Larry - A naturalist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5426 - Larry - A naturalist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5427 - Null - A Gentoo penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5428 - Penguin - A Gentoo penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5429 - Penguin - A Gentoo penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5430 - Penguin - It's all black and white to them. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5431 - KGP Guard - It's all black and white to them. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5432 - Pescaling Pax - It's not easy, not being king. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5433 - Ping - 'Berg bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5434 - Ping - 'Berg bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5435 - Pong - 'Berg bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5436 - Pong - 'Berg bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5437 - Ping - 'Berg bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5438 - Pong - 'Berg bard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5439 - Null - What restful music! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5440 - Null - Killer Gentoo Penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5441 - KGP Agent - Killer Gentoo Penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5442 - KGP Agent - What restful music! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5443 - Null - A Macaroni penguin. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5444 - Noodle - A Macaroni penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5445 - Penguin - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5446 - Penguin suit - A clockwork penguin. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5447 - Agility Instructor - Instructs agility. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5448 - Army Commander - An army commander. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5449 - Penguin - A Gentoo penguin, training. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5450 - Penguin - A Gentoo penguin, training. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5451 - Penguin - A Gentoo penguin, training. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5452 - Icelord - Sturdy cold being. - 51 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5453 - Icelord - Sturdy cold being. - 51 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5454 - Icelord - Sturdy cold being. - 51 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5455 - Icelord - Sturdy cold being. - 51 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5456 - Crusher - I will crush you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5457 - Crusher - I will crush you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5458 - Crusher - I will crush you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5459 - Crusher - I will crush you. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5460 - Tree - The High Priest has been transformed into an avatar of Bandos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5461 - Jungle Tree - The High Priest has been transformed into an avatar of Bandos. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5462 - Tolna - Where did his boot go? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5463 - Honour guard - The Burgher's protectors. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5464 - Honour guard - The Burgher's protectors. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5465 - Fridleif Shieldson - Commander of Neitiznot's guards. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5466 - Thakkrad Sigmundson - A young master craftsman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5467 - Iceberg - Like an icecube's big, fat uncle. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5468 - Iceberg - A floating chunk of ice. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5469 - Evergreen - A hardy evergreen pine. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5470 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5471 - Fishing spot - It looks like there might be fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5472 - Ice Troll King - An impressive-looking troll. - 122 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5473 - Ice troll runt - An ice troll youngling. - 74 - 1 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5474 - Ice troll male - A male troll wielding a large club. - 82 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5475 - Ice troll female - An ice troll with a bag of rocks. - 82 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5476 - Ice troll grunt - A large ice troll. - 102 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5477 - Bork Sigmundson - Physician to Neitiznot's militia. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5478 - King Gjuki Sorvott IV - An ill-tempered king. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5479 - HRH Hrafn - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5480 - Thorkel Silkbeard - Jatizso's Chancellor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5481 - Mord Gunnars - A humble ferryman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5482 - Mord Gunnars - A humble ferryman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5483 - Hring Hring - Harder than the rock he sells. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5484 - Flosi Dalksson - Jatizso's fishmonger. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5485 - Raum Urda-Stein - A guy that will sell you armour. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5486 - Skuli Myrka - Jatizso's armour merchant. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5487 - Keepa Kettilon - A rough-looking chef. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5488 - Magnus Gram - He can look after your money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5489 - Guard - A guard on insult duty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5490 - Guard - Stands around and insults stuff all day. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5491 - Guard - One of King Sorvott's militia. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5492 - Guard - One of King Sorvott's militia. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5493 - Freygerd - One of Jatizso's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5494 - Lensa - One of Jatizso's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5495 - Vanligga Gastfrihet - A happy, friendly landlady. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5496 - Sassilik - One of Jatizso's many citizens. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5497 - Miner - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5498 - Miner - A miner at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5499 - Eric - A bedraggled-looking tramp. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5500 - Gruva Patrull - Mina guards the mine entrance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5501 - Brendt - A dwarven trader from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5502 - Grundt - A dwarven trader from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5503 - Mawnis Burowgar - Neitiznot's Burgher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5504 - Mawnis Burowgar - Neitiznot's Burgher. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5505 - Fridleif Shieldson - Commander of Neitiznot's guards. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5506 - Thakkrad Sigmundson - A young master craftsman. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5507 - Maria Gunnars - Ferry-mistress. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5508 - Maria Gunnars - Ferry-mistress. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5509 - Jofridr Mordstatter - Mistress of the stores. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5510 - Morten Holdstrom - A yak handler's brother. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5511 - Gunnar Holdstrom - A yak handler. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5512 - Anne Isaakson - A farmhand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5513 - Lisse Isaakson - A farmhand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5514 - Honour guard - The Burgher's protectors. - 115 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5515 - Honour guard - The Burgher's protectors. - 115 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5516 - Honour guard - The Burgher's protectors. - 115 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5517 - Honour guard - One of your militia. - 115 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5518 - Kjedelig Uppsen - Guards the Burgher's room. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5519 - Trogen Konungarde - Guards the Burgher's room. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5520 - Slug Hemligssen - A man in a jester's costume. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5521 - Ice troll runt - An ice troll youngling. - 74 - 1 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5522 - Ice troll male - A male troll wielding a large club. - 82 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5523 - Ice troll female - An ice troll with a bag of rocks. - 82 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5524 - Ice troll grunt - A large ice troll. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5525 - Ice troll runt - An ice troll youngling. - 74 - 1 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5526 - Ice troll male - A male troll wielding a large club. - 82 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5527 - Ice troll female - An ice troll with a bag of rocks. - 82 - 1 - true - true - false - false - 10 - 1 - 70 - 4000 - 422 - 404 - 2304 - 91 - 91 - 91 - 0 - - - 5528 - Ice troll grunt - A large ice troll. - 100 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5529 - Yak - A hairy, smelly, grazing animal. - 22 - 2 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5530 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5531 - Sorceress - Antisocial. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5532 - Apprentice - Come, old broomstick, you are needed. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5533 - Autumn Elemental - An autumn elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5534 - Autumn Elemental - An autumn elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5535 - Autumn Elemental - An autumn elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5536 - Autumn Elemental - An autumn elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5537 - Autumn Elemental - An autumn elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5538 - Autumn Elemental - An autumn elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5539 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5540 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5541 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5542 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5543 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5544 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5545 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5546 - Spring Elemental - A spring elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5547 - Summer Elemental - A summer elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5548 - Summer Elemental - A summer elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5549 - Summer Elemental - A summer elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5550 - Summer Elemental - A summer elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5551 - Summer Elemental - A summer elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5552 - Summer Elemental - A summer elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5553 - Winter Elemental - A winter elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5554 - Winter Elemental - A winter elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5555 - Winter Elemental - A winter elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5556 - Winter Elemental - A winter elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5557 - Winter Elemental - A winter elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5558 - Winter Elemental - A winter elemental. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5559 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5560 - Osman - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5561 - Osman - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5562 - Null - He looks a little shifty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5563 - Del-Monty - Loves living in an orchard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5564 - Bouncer - Big, mean, dead doggy. - 160 - 2 - true - true - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 5565 - Bouncer - Big, mean, dead doggy. - 160 - 2 - true - true - false - false - 10 - 1 - 120 - 4000 - 422 - 404 - 2304 - 156 - 156 - 156 - 0 - - - 5566 - General Khazard - He looks really nasty. Smells bad too. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5567 - Scout - An invisible scout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5568 - Scout - An invisible scout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5569 - Scout - An invisible scout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5570 - Scout - An invisible scout. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5571 - Sin Seer - She's honest about the things you aren't. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5572 - Ghost - A Shadow Realm guardian. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5573 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5574 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5575 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5576 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5577 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5578 - Effigy - He knows anything is possible. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5579 - Effigy - He knows anything is possible. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5580 - Bonafido - He knows everything has a reason. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5581 - Homunculus - Is it male or female? - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5582 - Homunculus - It looks pretty unhappy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5583 - Homunculus - It looks pretty unhappy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5584 - Cage - You could hold anything in that. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5585 - 'Transmute' The Alchemist - He wants to create everything from nothing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5586 - 'Transmute' The Alchemist - He wants to create everything from nothing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5587 - 'Currency' The Alchemist - All he wants is gold. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5588 - 'Currency' The Alchemist - All he wants is gold. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5589 - 'Black-eye' - Famous for his fights. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5590 - 'No fingers' - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5591 - 'Gummy' - He wishes he had teeth. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5592 - 'The Guns' - He likes to weightlift a little too much. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5593 - Frogeel - It's an NPC. - 103 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5594 - Spidine - It's a spider. No, a giant sardine... - 42 - 1 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 5595 - Swordchick - Definitely not a chicken or a swordfish. - 46 - 1 - true - true - false - false - 10 - 1 - 35 - 4000 - 422 - 404 - 2304 - 45 - 45 - 45 - 0 - - - 5596 - Jubster - A jubbly bird with claws. - 87 - 2 - true - true - false - false - 10 - 1 - 60 - 4000 - 422 - 404 - 2304 - 78 - 78 - 78 - 0 - - - 5597 - Newtroost - Since when did newts have beaks? - 19 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5598 - Null - He knows anything is possible. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5599 - Null - It looks pretty unhappy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5600 - Null - It looks pretty unhappy. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5601 - Null - He wants to create everything from nothing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5602 - Null - All he wants is gold. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5603 - Unicow - Half unicorn, half cow. - 25 - 2 - true - true - false - false - 10 - 1 - 24 - 4000 - 422 - 404 - 2304 - 31 - 31 - 31 - 0 - - - 5604 - Elfinlocks - A player. - 93 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5605 - Clockwork cat - An amazing piece of Crafting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5606 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5607 - Clockwork cat - An amazing piece of Crafting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5608 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5609 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5610 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5611 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5612 - Rufus - There's something strange about him... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5613 - Mi-Gor - Little. Evil. Different. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5614 - Puffin - I'd prefer it if it were a muffin... - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5615 - Puffin - It's rocking out. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5616 - Brother Tranquility - He's looked healthier. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5617 - Brother Tranquility - Much holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5618 - Brother Tranquility - Much holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5619 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5620 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5621 - Monk - Holier than thou. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5622 - Monk - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5623 - Zombie monk - Looked better. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5624 - Zombie monk - Looked better. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5625 - Zombie monk - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5626 - Zombie monk - Looked better. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5627 - Sorebones - Bedside manner is a little lacking, I think. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5628 - Sorebones - I hope his hands don't shake. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5629 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5630 - Zombie pirate - It's an NPC. - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5631 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5632 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5633 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5634 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5635 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5636 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5637 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5638 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5639 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5640 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5641 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5642 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5643 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5644 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5645 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5646 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5647 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5648 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5649 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5650 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5651 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5652 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5653 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5654 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5655 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5656 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5657 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5658 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5659 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5660 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5661 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5662 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5663 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5664 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5665 - Zombie pirate - Aaaarg, me hearty! - 57 - 1 - true - true - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5666 - Barrelchest - It's trying to mash you flat! Less examine, more fight! - 190 - 3 - true - true - false - false - 10 - 1 - 135 - 4000 - 422 - 404 - 2304 - 175 - 175 - 175 - 0 - - - 5667 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5668 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5669 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5670 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5671 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5672 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5673 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5674 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5675 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5676 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5677 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5678 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5679 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5680 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5681 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5682 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5683 - Undead Lumberjack - He is one, but he's not alright. - 30 - 1 - true - true - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5684 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5685 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5686 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5687 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5688 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5689 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5690 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5691 - Undead Lumberjack - He is one, but he's not alright. - 35 - 1 - true - true - false - false - 10 - 1 - 11 - 4000 - 422 - 404 - 2304 - 14 - 14 - 14 - 0 - - - 5692 - Undead Lumberjack - It's an NPC. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5693 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5694 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5695 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5696 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5697 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5698 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5699 - Undead Lumberjack - He is one, but he's not alright. - 40 - 1 - true - true - false - false - 10 - 1 - 12 - 4000 - 422 - 404 - 2304 - 15 - 15 - 15 - 0 - - - 5700 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5701 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5702 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5703 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5704 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5705 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5706 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5707 - Undead Lumberjack - He is one, but he's not alright. - 45 - 1 - true - true - false - false - 10 - 1 - 13 - 4000 - 422 - 404 - 2304 - 16 - 16 - 16 - 0 - - - 5708 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5709 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5710 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5711 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5712 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5713 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5714 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5715 - Undead Lumberjack - He is one, but he's not alright. - 50 - 1 - true - true - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5716 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5717 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5718 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5719 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5720 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5721 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5722 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5723 - Undead Lumberjack - He is one, but he's not alright. - 55 - 1 - true - true - false - false - 10 - 1 - 15 - 4000 - 422 - 404 - 2304 - 19 - 19 - 19 - 0 - - - 5724 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5725 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5726 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5727 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5728 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5729 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5730 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5731 - Undead Lumberjack - He is one, but he's not alright. - 60 - 1 - true - true - false - false - 10 - 1 - 16 - 4000 - 422 - 404 - 2304 - 20 - 20 - 20 - 0 - - - 5732 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5733 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5734 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5735 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5736 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5737 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5738 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5739 - Undead Lumberjack - He is one, but he's not alright. - 64 - 1 - true - true - false - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5740 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5741 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5742 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5743 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5744 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5745 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5746 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5747 - Undead Lumberjack - He is one, but he's not alright. - 70 - 1 - true - true - false - false - 10 - 1 - 18 - 4000 - 422 - 404 - 2304 - 23 - 23 - 23 - 0 - - - 5748 - Fishing spot - I can see fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5749 - Fishing spot - I can see fish swimming in the water. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5750 - Cave bug - A big, smelly cave dweller. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5751 - Molanisk - A strange mole-like being. - 51 - 1 - true - false - false - false - 10 - 1 - 52 - 4000 - 422 - 404 - 2304 - 67 - 67 - 67 - 0 - - - 5752 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5753 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5754 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5755 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5756 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5757 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5758 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5759 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5760 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5761 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5762 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5763 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5764 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5765 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5766 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5767 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5768 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5769 - Cave goblin - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5770 - Ur-zek - A respected member of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5771 - Ur-vass - A respected member of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5772 - Ur-taal - A respected member of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5773 - Ur-meg - A respected member of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5774 - Ur-lun - A respected member of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5775 - Ur-pel - A respected member of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5776 - Banker - Looks after cave goblin money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5777 - Banker - Looks after cave goblin money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5778 - Bartak - He works the city's metal. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5779 - Turgall - He keeps the cave goblin magic working. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5780 - Reldak - Sells leather goods made of frog! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5781 - Miltog - Sells lamps to light your way in dark caves. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5782 - Mernik - She looks after the kiddies. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5783 - Cave goblin - One of the many citizens of Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5784 - Crate goblin - Taking a terribly important box from one place to another. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5785 - Cave goblin - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5786 - Goblin scribe - Good at shorthand. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5787 - Oldak - A scientist exploring the ways of magic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5788 - Gourmet - A connoisseur of exotic foods from outside Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5789 - Gourmet - A connoisseur of exotic foods from outside Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5790 - Gourmet - A connoisseur of exotic foods from outside Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5791 - Gourmet - A connoisseur of exotic foods from outside Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5792 - Turgok - Sells cave goblin fast food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5793 - Markog - Sells cave goblin fast food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5794 - Durgok - Sells cave goblin fast food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5795 - Tindar - Sells cave goblin fast food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5796 - Gundik - Sells cave goblin fast food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5797 - Zenkog - Sells cave goblin fast food. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5798 - Lurgon - Oversees the market. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5799 - Ur-tag - He's the head of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5800 - Guard - He keeps order in the city. - 26 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5801 - Guard - He keeps order in the city. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5802 - Null - A goblin adventurer. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5803 - Young 'un - A goblin baby. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5804 - Tyke - A goblin baby. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5805 - Nipper - A goblin baby. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5806 - Nipper - A goblin baby. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5807 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5808 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5809 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5810 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5811 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5812 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5813 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5814 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5815 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5816 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5817 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5818 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5819 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5820 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5821 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5822 - Cave goblin child - A goblin child. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5823 - Spit goblin - Don't spit, it's unhygienic. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5824 - Goblin fish - A bug-eyed little goblin fish. How cute. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5825 - Movario - He knows a thousand arcane secrets, every one of which would drive you mad. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5826 - Darve - He's here to guard the wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5827 - Moths - Annoying little flappy things. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5828 - Barlak - Sells bone goods. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5829 - Rabbit - Aww, how cute. - 2 - 1 - true - false - false - false - 10 - 1 - 5 - 4000 - 422 - 404 - 2304 - 6 - 6 - 6 - 0 - - - 5830 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5831 - Null - It's an NPC. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5832 - Null - The dwarf ambassador to Dorgesh-Kaan. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5833 - Rat Burgiss - A travelling trader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5834 - Surok Magis - A powerful wizard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5835 - Surok Magis - Leader of the Dagon'hai Order. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5836 - Zaff - Sells superior staffs. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5837 - Anna Jones - An archeologist. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5838 - King Roald - Varrock's resident monarch. He looks strangely evil! - 47 - 1 - true - true - false - false - 10 - 1 - 50 - 4000 - 422 - 404 - 2304 - 65 - 65 - 65 - 0 - - - 5839 - Mishkal'un Dorn - A monk of the Dagon'hai Order. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5840 - Dakh'thoulan Aegis - A monk of the Dagon'hai Order. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5841 - Sil'as Dahcsnu - A monk of the Dagon'hai Order. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5842 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5843 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5844 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5845 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5846 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5847 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5848 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5849 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5850 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5851 - Outlaw - A mean looking outlaw. Don't get too close! - 32 - 1 - true - false - false - false - 10 - 1 - 20 - 4000 - 422 - 404 - 2304 - 26 - 26 - 26 - 0 - - - 5852 - Monkey - Perhaps our oldest relatives? - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5853 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5854 - Bench - For sitting on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5855 - Goblin - An ugly green creature. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5856 - Goblin - An ugly goblin... bleurgh! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5857 - Zanik - The Chosen Commander? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5858 - Ur-tag - He's the head of the Dorgeshuun Council. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5859 - H.A.M. Archer - He looks pretty skilled with that bow. - 30 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5860 - H.A.M. Mage - He bristles with arcane power. - 30 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5861 - Zanik - She's addressing the crowd. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5862 - Sigmund and Zanik - Sigmund holding Zanik hostage. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5863 - Ambassador Alvijar - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5864 - Builder - A worker on the train link. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5865 - Builder - A worker on the train link. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5866 - Builder - A worker on the train link. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5867 - Builder - A worker on the train link. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5868 - Tegdak - He's digging up cave goblin history! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5869 - Null - He's digging up cave goblin history! - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5870 - Zanik - A cave goblin adventurer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5871 - Sergeant Mossfists - An ugly green creature... but don't say that to his face! - 51 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5872 - Sergeant Slimetoes - An ugly green creature... but don't say that to his face! - 51 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5873 - Cave goblin - A goblin with big, bulging eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5874 - Cave goblin - A goblin with big, bulging eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5875 - Cave goblin - A goblin with big, bulging eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5876 - Cave goblin - A goblin with big, bulging eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5877 - Cave goblin - A goblin with big, bulging eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5878 - Cave goblin - A goblin with big, bulging eyes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5879 - Ticket goblin - He sells tickets to Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5880 - Dwarf - A dwarf from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5881 - Dwarf - A dwarf from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5882 - Dwarf - A dwarf from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5883 - Dwarf - A dwarf from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5884 - Dwarf - A dwarf from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5885 - Dwarf - A dwarf from Keldagrim. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5886 - Ticket dwarf - He sells tickets to Dorgesh-Kaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5887 - Null - The dwarf ambassador to Dorgesh-Kaan. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5888 - Null - A cave goblin adventurer. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5889 - Null - Goblin. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5890 - Null - Goblin. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5891 - Null - Goblin. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5892 - Null - Goblin. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5893 - Cyrisus - He's much better than when I first found him. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5894 - Cyrisus - I'm glad he's finally on his feet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5895 - Cyrisus - He's a ranger - light and accurate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5896 - Cyrisus - He's a meleer - prepared to go face-to-face. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5897 - Cyrisus - He's a mage - mystical and calculating. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5898 - 'Bird's-Eye' Jack - A pirate-banker. You don't see one of those everyday! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5899 - Null - An aspiring adventurer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5900 - Null - An aspiring adventurer. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5901 - Null - A pirate-banker. You don't see one of those everyday! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5902 - The Inadequacy - Are you good enough to fight? - 343 - 5 - true - true - false - false - 10 - 1 - 180 - 4000 - 422 - 404 - 2304 - 234 - 234 - 234 - 0 - - - 5903 - The Everlasting - Can you endure long enough? - 223 - 3 - true - true - false - false - 10 - 1 - 230 - 4000 - 422 - 404 - 2304 - 299 - 299 - 299 - 0 - - - 5904 - The Untouchable - Can you bring yourself to hurt another? - 274 - 2 - true - true - false - false - 10 - 1 - 90 - 4000 - 422 - 404 - 2304 - 117 - 117 - 117 - 0 - - - 5905 - The Illusive - What if you don't know how to win? - 108 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5906 - A Doubt - You can't escape your inadequacy! - 78 - 1 - true - true - false - false - 10 - 1 - 59 - 4000 - 422 - 404 - 2304 - 76 - 76 - 76 - 0 - - - 5907 - The Illusive - What if you don't know how to win? - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5908 - Dying tree - Dead stone defending a dead throne room. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5909 - Barbarian - Don't let her arm-wrestle you for money. - 8 - 1 - true - false - false - false - 10 - 1 - 14 - 4000 - 422 - 404 - 2304 - 18 - 18 - 18 - 0 - - - 5910 - Cook - A greasy, grimy gourmet. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5911 - Cook - He's suspiciously talented with a meat-cleaver. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5912 - Banker - He can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5913 - Banker - She can look after my money. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5914 - Iffie - An old woman busily knitting. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5915 - Elsie - Armed with a pair of needles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5916 - Cleaner - Does what too many people aren't interested in doing. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5917 - Stray dog - A mangy mutt. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5918 - Stray dog - Are those fleas all over it? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5919 - Guard - He tries to keep order around here. His bizarre uniform isn't helping. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 5920 - Guard - He tries to keep order around here. His bizarre uniform isn't helping. - 21 - 1 - true - false - false - false - 10 - 1 - 22 - 4000 - 422 - 404 - 2304 - 28 - 28 - 28 - 0 - - - 5921 - Trainee Guard - He's studying to be a guard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5922 - Captain - Trains the guards of the future. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5923 - Man - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 5924 - Woman - One of Wildy's many citizens. - 2 - 1 - true - false - false - false - 10 - 1 - 7 - 4000 - 422 - 404 - 2304 - 9 - 9 - 9 - 0 - - - 5925 - Benny - Newspaper seller. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5926 - Thief - Known for his light-fingered qualities. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5927 - Thief - Known for his light-fingered qualities. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5928 - Thief - It's an NPC. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5929 - Thief - Known for her light-fingered qualities. - 16 - 1 - true - true - true - false - 10 - 1 - 17 - 4000 - 422 - 404 - 2304 - 22 - 22 - 22 - 0 - - - 5930 - Art Critic Jacques - Jacques Netis - a slightly pompous art expert. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5931 - Historian Minas - Seth Minas - an aged expert in Wildy history. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5932 - Barnabus Hurma - An archaeologist hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5933 - Marius Giste - An archaeologist hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5934 - Caden Azro - An archaeologist hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5935 - Thias Leacke - An archaeologist hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5936 - Sinco Doar - An archaeologist hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5937 - Tinse Torpe - An archaeologist hard at work. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5938 - Information clerk - A lady with lots of information about the Museum. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5939 - Torrcs - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5940 - Marfet - Looks like he knows a thing or two. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5941 - Museum guard - This man guards the entrance to the Museum's cleaning area. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5942 - Museum guard - This man guards the workman's gate. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5943 - Museum guard - This man guards the workman's entrance. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5944 - Teacher and pupil - A teacher and one of his pupils. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5945 - Schoolboy - Looks kind of familiar. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5946 - Schoolboy - Cheeky little chappy. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5947 - Teacher and pupil - A teacher and one of her pupils. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5948 - Teacher and pupil - A teacher and one of his pupils. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5949 - Schoolboy - A cheeky little chappy. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5950 - Teacher - A schoolteacher. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5951 - Schoolgirl - A schoolgirl. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5952 - Workman - Looks hard at work. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5953 - Workman - Looks hard at work. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5954 - Workman - Could there be something exciting in his wheelbarrow? - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5955 - Workman - It's an NPC. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5956 - Workman - A powerful knight of balance. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5957 - Workman - Looks intent on learning. - 0 - 2 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5958 - Dig Site workman - Wheelbarrow loader. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5959 - Barge workman - Working hard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5960 - Barge workman - Working hard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5961 - Barge workman - Working hard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5962 - Barge workman - Working hard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5963 - Barge foreman - Working hard. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5964 - Ed Wood - Likes the straight and narrow. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5965 - Orlando Smith - Looks very young. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5966 - Natural historian - An aged expert in natural history. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5967 - Natural historian - An aged expert in natural history. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5968 - Natural historian - An aged expert in natural history. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5969 - Natural historian - An aged expert in natural history. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5970 - Natural historian - An aged expert in natural history. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5971 - Leech display - Bloodsuckers! - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5972 - Sea slugs display - Slugs of the sea variety. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5973 - Snail display - A house on its back. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5974 - Monkey display - A cheeky little monkey. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5975 - Lizard display - A scaly little fellow. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5976 - Penguin display - Nice suit. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5977 - Camel display - He's got the hump. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5978 - Terrorbird display - Terrifying! - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5979 - Dragon display - Looks like a fire-breather. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5980 - Wyvern display - Needs a good square meal. - 0 - 4 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5981 - Battle tortoise display - A huge beast. - 0 - 5 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5982 - Mole display - Loves making molehills. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5983 - Schoolgirl - Delightfully cheerful. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5984 - Schoolgirl - Cute pigtails. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5985 - Schoolgirl - Ahh, the youth of today. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5986 - Schoolgirl - What's in his wheelbarrow? - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5987 - Sylas - A gnarly old man. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5988 - Miazrqa - A slightly insane princess. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5989 - Grimgnash - An evil looking griffin. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5990 - Rupert the Beard - A dwarf. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5991 - Drain pipe - A rusty drainpipe. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5992 - Rupert the Beard - A dwarf. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5993 - Experiment No.2 - A very odd looking creature. - 109 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5994 - Mouse - A huge mouse. It looks hungry... - 95 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5995 - Mouse - A huge mouse. It looks hungry... - 95 - 4 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 5996 - Glod - A cloud giant. - 138 - 4 - true - true - false - false - 10 - 1 - 160 - 4000 - 422 - 404 - 2304 - 208 - 208 - 208 - 0 - - - 5997 - Null - An evil looking griffin. - 0 - 3 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5998 - Null - A dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 5999 - Rupert the Beard - A dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6000 - Null - A dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6001 - Rupert the Beard - A dwarf. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6002 - Gnome - Like a mini man! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6003 - Winkin - Like a mini man! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6004 - Gnome - Like a mini man! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6005 - Cage - An empty cage. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6006 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6007 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6008 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6009 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6010 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6011 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6012 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6013 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6014 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6015 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6016 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6017 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6018 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6019 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6020 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6021 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6022 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6023 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6024 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6025 - Werewolf - Eek! A werewolf! - 88 - 1 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6026 - Boris - A traveling man. Are those fleas? - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6027 - Imre - A well organised shop keeper. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6028 - Yuri - He's staring at the moon. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6029 - Joseph - He keeps calling me comrade. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6030 - Nikolai - There's a set of brows that mean business. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6031 - Eduard - This is one feral looking innkeeper. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6032 - Lev - A tough looking villager. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6033 - Georgy - A simple villager. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6034 - Svetlana - Seems a bit of a drama queen. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6035 - Irina - I bet she works out. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6036 - Alexis - She doesn't say much. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6037 - Milla - She looks like she can handle herself. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6038 - Galina - She seems light on her feet. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6039 - Sofiya - A wise villager. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6040 - Ksenia - Not exactly a warrior princess. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6041 - Yadviga - A well off villager. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6042 - Nikita - The woman. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6043 - Vera - She seems sure of herself. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6044 - Zoja - A healthy villager. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6045 - Liliya - She's looking for flowers. - 24 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6046 - Big Wolf - Must be the pack leader. - 73 - 2 - true - true - false - false - 10 - 1 - 74 - 4000 - 422 - 404 - 2304 - 96 - 96 - 96 - 0 - - - 6047 - Wolf - A social killer. - 25 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6048 - Wolf - A social killer. - 25 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6049 - Wolf - A social killer. - 25 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6050 - Desert Wolf - A vicious desert wolf. - 27 - 2 - true - true - false - false - 10 - 1 - 34 - 4000 - 422 - 404 - 2304 - 44 - 44 - 44 - 0 - - - 6051 - Desert Wolf - A vicious desert wolf. - 27 - 2 - true - true - false - false - 10 - 1 - 34 - 4000 - 422 - 404 - 2304 - 44 - 44 - 44 - 0 - - - 6052 - Ice wolf - Not man's best friend. - 96 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6053 - Ninja impling - A very stealthy impling. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6054 - Dragon impling - An impling who likes the word 'dragon'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6055 - Baby impling - An impling baby. Aaah. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6056 - Young impling - A young impling. It's not fair! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6057 - Gourmet impling - An impling gourmet. Mmmm, tasty. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6058 - Earth impling - An earth impling. Rock on. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6059 - Essence impling - An impling who likes magic. Magic! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6060 - Eclectic impling - An impling with varied tastes. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6061 - Nature impling - A nature impling. Right on, maaan. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6062 - Magpie impling - Ooh, shiny things! - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6063 - Ninja impling - A very stealthy impling. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6064 - Dragon impling - An impling who likes the word 'dragon'. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6065 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6066 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6067 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6068 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6069 - Null - Going round in circles. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6070 - Elnock Inquisitor - Insurance investigator extraordinaire. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6071 - Impling - An impling. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6072 - Fairy Aeryka - She tends the wheat. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6073 - Wandering impling - He looks a little lost. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6074 - Imp defender - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6075 - Null - This ghost looks quite rebellious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6076 - Null - This ghost looks quite rebellious. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6077 - Null - It's an NPC. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6078 - Cyclops - A one-eyed man eater. - 56 - 2 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 6079 - Cyclops - A one-eyed woman eater. - 76 - 2 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6080 - Cyclops - A one-eyed man eater. - 56 - 2 - true - true - false - false - 10 - 1 - 80 - 4000 - 422 - 404 - 2304 - 104 - 104 - 104 - 0 - - - 6081 - Cyclops - A one-eyed woman eater. - 76 - 2 - true - true - false - false - 10 - 1 - 100 - 4000 - 422 - 404 - 2304 - 130 - 130 - 130 - 0 - - - 6082 - Null - The only captain not scared of dragons. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6083 - Null - The only captain not scared of dragons. - 1 - 1 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6084 - Captain Ned - An old sailor. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6085 - Cabin boy Jenkins - His job is to keep the ship in tip-top condition. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6086 - Cabin boy Jenkins - His job is to keep the ship in tip-top condition. - 0 - 1 - false - false - false - false - 10 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 6087 - Elvarg - Roar! A dragon! - 83 - 4 - false - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6088 - Zombie rat - Overgrown undead vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6089 - Zombie rat - Overgrown undead vermin. - 3 - 2 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6090 - Zombie rat - Overgrown undead vermin. - 3 - 1 - true - false - false - false - 10 - 1 - 10 - 4000 - 422 - 404 - 2304 - 13 - 13 - 13 - 0 - - - 6091 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 6092 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 6093 - Skeleton - Could do with gaining a few pounds. - 22 - 1 - true - true - false - false - 10 - 1 - 29 - 4000 - 422 - 404 - 2304 - 37 - 37 - 37 - 0 - - - 6094 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 6095 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 6096 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 6097 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 6098 - Ghost - Eeek! A ghost! - 19 - 1 - true - true - false - false - 10 - 1 - 25 - 4000 - 422 - 404 - 2304 - 32 - 32 - 32 - 0 - - - 6099 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 6100 - Zombie - The walking dead. - 24 - 1 - true - true - false - false - 10 - 1 - 30 - 4000 - 422 - 404 - 2304 - 39 - 39 - 39 - 0 - - - 6101 - Lesser demon - Lesser, but still pretty big. - 82 - 2 - true - true - false - false - 10 - 1 - 79 - 4000 - 422 - 404 - 2304 - 102 - 102 - 102 - 0 - - \ No newline at end of file diff --git a/2006Scape Server/data/cfg/spawns.json b/2006Scape Server/data/cfg/spawns.json index 7e7c5d7b..4f421617 100644 --- a/2006Scape Server/data/cfg/spawns.json +++ b/2006Scape Server/data/cfg/spawns.json @@ -3789,36 +3789,6 @@ "walk": 1, "height": 0 }, - { - "maxHit": 32, - "strength": 200, - "attack": 300, - "x": 1738, - "y": 5226, - "id": 3340, - "walk": 1, - "height": 0 - }, - { - "maxHit": 32, - "strength": 200, - "attack": 300, - "x": 1777, - "y": 5237, - "id": 3340, - "walk": 1, - "height": 0 - }, - { - "maxHit": 32, - "strength": 200, - "attack": 300, - "x": 1740, - "y": 5178, - "id": 3340, - "walk": 1, - "height": 0 - }, { "maxHit": 32, "strength": 200, @@ -3829,16 +3799,6 @@ "walk": 1, "height": 0 }, - { - "maxHit": 32, - "strength": 200, - "attack": 300, - "x": 1780, - "y": 5190, - "id": 3340, - "walk": 1, - "height": 0 - }, { "maxHit": 38, "strength": 200, diff --git a/2006Scape Server/plugins/plugin/buttons/gameframe/SoundVolumeButtons.java b/2006Scape Server/plugins/plugin/buttons/gameframe/SoundVolumeButtons.java new file mode 100644 index 00000000..7cc42b6f --- /dev/null +++ b/2006Scape Server/plugins/plugin/buttons/gameframe/SoundVolumeButtons.java @@ -0,0 +1,37 @@ +package plugin.buttons.gameframe; + +import com.rs2.event.SubscribesTo; +import com.rs2.event.impl.ButtonActionEvent; +import com.rs2.game.content.music.Music; +import com.rs2.game.players.Player; +import plugin.buttons.ButtonClick; + +@SubscribesTo(ButtonActionEvent.class) +public final class SoundVolumeButtons extends ButtonClick { + + @Override + protected void execute(Player player, ButtonActionEvent event) { + switch (event.getButton()) { + + case 3173: + if (player.soundOn) { + player.soundOn = false; + } else { + player.getPacketSender().sendMessage("Your sound is already turned off."); + } + break; + case 3174: + case 3175: + case 3176: + case 3177: + player.soundOn = true; + break; + } + } + + @Override + public boolean test(ButtonActionEvent event) { + return event.getButton() == 3173 || event.getButton() == 3174 || event.getButton() == 3175 || event.getButton() == 3176 || event.getButton() == 3177; + } + +} diff --git a/2006Scape Server/src/main/java/com/rs2/GameEngine.java b/2006Scape Server/src/main/java/com/rs2/GameEngine.java index 6e343404..e1495809 100644 --- a/2006Scape Server/src/main/java/com/rs2/GameEngine.java +++ b/2006Scape Server/src/main/java/com/rs2/GameEngine.java @@ -153,15 +153,15 @@ public class GameEngine { } if (!new File("data").exists()) { - System.out.println("************************************"); - System.out.println("************************************"); - System.out.println("************************************"); - System.out.println("WARNING: I could not find the /data folder. You are LIKELY running this in the wrong directory!"); - System.out.println("In IntelliJ, fix it by clicking \"Server\" > Edit Configurations at the top of your screen"); - System.out.println("Then changing the \"Working Directory\" to be in \"2006Scape/2006Scape Server\", instead of just \"2006Scape\""); - System.out.println("************************************"); - System.out.println("************************************"); - System.out.println("************************************"); + System.err.println("************************************"); + System.err.println("************************************"); + System.err.println("************************************"); + System.err.println("WARNING: I could not find the /data folder. You are LIKELY running this in the wrong directory!"); + System.err.println("In IntelliJ, fix it by clicking \"Server\" > Edit Configurations at the top of your screen"); + System.err.println("Then changing the \"Working Directory\" to be in \"2006Scape/2006Scape Server\", instead of just \"2006Scape\""); + System.err.println("************************************"); + System.err.println("************************************"); + System.err.println("************************************"); System.exit(1); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/combat/AttackType.java b/2006Scape Server/src/main/java/com/rs2/game/content/combat/AttackType.java new file mode 100644 index 00000000..aa3b037e --- /dev/null +++ b/2006Scape Server/src/main/java/com/rs2/game/content/combat/AttackType.java @@ -0,0 +1,18 @@ +package com.rs2.game.content.combat; + +public enum AttackType { + MELEE(0), + RANGE(1), + MAGIC(2), + FIRE_BREATH(3); + + private final int value; + + AttackType(int value) { + this.value = value; + } + + public int getValue() { + return value; + } + } \ No newline at end of file diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcCombat.java b/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcCombat.java index 3c5c844c..d7af8e18 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcCombat.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcCombat.java @@ -1,6 +1,7 @@ package com.rs2.game.content.combat.npcs; import com.rs2.Constants; +import com.rs2.game.content.combat.AttackType; import com.rs2.game.content.combat.CombatConstants; import com.rs2.game.content.combat.melee.MeleeData; import com.rs2.game.content.minigames.FightCaves; @@ -8,6 +9,7 @@ import com.rs2.game.content.minigames.PestControl; import com.rs2.game.content.music.sound.CombatSounds; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.items.impl.Greegree.MonkeyData; +import com.rs2.game.npcs.NPCDefinition; import com.rs2.game.npcs.NpcData; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Client; @@ -28,7 +30,7 @@ public class NpcCombat { } if (player.goodDistance(c.absX, c.absY, NpcHandler.npcs[i].absX, NpcHandler.npcs[i].absY, 15)) { - if (NpcHandler.npcs[i].attackType == 2) { + if (NpcHandler.npcs[i].attackType == AttackType.MAGIC.getValue()) { if (!c.getPrayer().prayerActive[16]) { if (Misc.random(500) + 200 > Misc.random(c.getCombatAssistant().mageDef())) { int dam = Misc.random(max); @@ -42,7 +44,7 @@ public class NpcCombat { c.dealDamage(0); c.handleHitMask(0); } - } else if (NpcHandler.npcs[i].attackType == 1) { + } else if (NpcHandler.npcs[i].attackType == AttackType.RANGE.getValue()) { if (!c.getPrayer().prayerActive[17]) { int dam = Misc.random(max); if (Misc.random(500) + 200 > Misc.random(c @@ -164,7 +166,7 @@ public class NpcCombat { NpcHandler.npcs[i].facePlayer(c); NpcHandler.npcs[i].attackTimer = NpcData.getNpcDelay(i); NpcHandler.npcs[i].hitDelayTimer = NpcData.getHitDelay(i); - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); if (CombatConstants.COMBAT_SOUNDS) { if (PestControl.npcIsPCMonster(NpcHandler.npcs[i].npcType) || PestControl.isPCPortal(NpcHandler.npcs[i].npcType)) { return; @@ -176,7 +178,7 @@ public class NpcCombat { } else { loadSpell(c, i); } - if (NpcHandler.npcs[i].attackType == 3) { + if (NpcHandler.npcs[i].attackType == AttackType.FIRE_BREATH.getValue()) { NpcHandler.npcs[i].hitDelayTimer += 2; } if (NpcHandler.multiAttacks(i)) { @@ -225,7 +227,7 @@ public class NpcCombat { } public static void loadSpell2(int i) { - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); int random = Misc.random(3); if (random == 0) { NpcHandler.npcs[i].projectileId = 393; // red @@ -244,63 +246,63 @@ public class NpcCombat { public static void loadSpell(Player c, int i) { if (NpcHandler.npcs[i].npcType > 2462 && NpcHandler.npcs[i].npcType < 2469 || NpcHandler.npcs[i].npcType > 3751 && NpcHandler.npcs[i].npcType < 3762) { - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); } if (NpcHandler.npcs[i].npcType > 3761 && NpcHandler.npcs[i].npcType < 3772) { - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); } switch (NpcHandler.npcs[i].npcType) { case 1158://kq first form int kqRandom = Misc.random(3); if (kqRandom == 2) { NpcHandler.npcs[i].projectileId = 280; //gfx - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].endGfx = 279; } else { - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); } break; case 1160://kq secondform int kqRandom2 = Misc.random(3); if (kqRandom2 == 2) { NpcHandler.npcs[i].projectileId = 279; //gfx - NpcHandler.npcs[i].attackType = 1 + Misc.random(1); + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue() + Misc.random(1); NpcHandler.npcs[i].endGfx = 278; } else { - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); } break; case 2607: - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); case 2591: - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); break; case 172: case 174: NpcHandler.npcs[i].gfx100(96); // Dark Wizards use earth strike NpcHandler.npcs[i].projectileId = 97; NpcHandler.npcs[i].endGfx = 98; - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); break; case 3068: if(Misc.random(10) > 7) { NpcHandler.npcs[i].projectileId = 393; //red NpcHandler.npcs[i].endGfx = 430; - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); NpcData.startAnimation(2989, i); } else { NpcData.startAnimation(2980, i); - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); } break; case 2892: NpcHandler.npcs[i].projectileId = 94; - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].endGfx = 95; break; case 2894: NpcHandler.npcs[i].projectileId = 298; - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); break; /* * Better Dragons @@ -320,12 +322,12 @@ public class NpcCombat { case 1: NpcHandler.npcs[i].projectileId = 393; // red NpcHandler.npcs[i].endGfx = 430; - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); break; default: NpcHandler.npcs[i].projectileId = -1; // melee NpcHandler.npcs[i].endGfx = -1; - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); break; } break; @@ -346,49 +348,49 @@ public class NpcCombat { case 0: NpcHandler.npcs[i].projectileId = 393; // red NpcHandler.npcs[i].endGfx = 430; - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); break; case 1: NpcHandler.npcs[i].projectileId = 394; // green NpcHandler.npcs[i].endGfx = 429; - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); break; case 2: NpcHandler.npcs[i].projectileId = 395; // white NpcHandler.npcs[i].endGfx = 431; - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); break; case 3: NpcHandler.npcs[i].projectileId = 396; // blue NpcHandler.npcs[i].endGfx = 428; - NpcHandler.npcs[i].attackType = 3; + NpcHandler.npcs[i].attackType = AttackType.FIRE_BREATH.getValue(); break; case 4: NpcHandler.npcs[i].projectileId = -1; // melee NpcHandler.npcs[i].endGfx = -1; - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); break; } break; // arma npcs case 2561: - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); break; case 2560: - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 1190; break; case 2559: - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].projectileId = 1203; break; case 2558: random = Misc.random(1); - NpcHandler.npcs[i].attackType = 1 + random; - if (NpcHandler.npcs[i].attackType == 1) { + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue() + random; + if (NpcHandler.npcs[i].attackType == AttackType.RANGE.getValue()) { NpcHandler.npcs[i].projectileId = 1197; } else { - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].projectileId = 1198; } break; @@ -396,48 +398,48 @@ public class NpcCombat { case 2562: // sara random = Misc.random(1); if (random == 0) { - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].endGfx = 1224; NpcHandler.npcs[i].projectileId = -1; } else if (random == 1) { - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); } break; case 2563: // star - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); break; case 2564: // growler - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].projectileId = 1203; break; case 2565: // bree - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 9; break; // bandos npcs case 2550: random = Misc.random(2); if (random == 0 || random == 1) { - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); } else { - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].endGfx = 1211; NpcHandler.npcs[i].projectileId = 288; } break; case 2551: - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); break; case 2552: - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].projectileId = 1203; break; case 2553: - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 1206; break; case 2025: - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); int r = Misc.random(3); if (r == 0) { NpcHandler.npcs[i].gfx100(158); @@ -460,30 +462,30 @@ public class NpcCombat { } break; case 2881:// supreme - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 298; break; case 2882:// prime - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].projectileId = 162; NpcHandler.npcs[i].endGfx = 477; break; case 2028: - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 27; break; case 3200: int r2 = Misc.random(1); if (r2 == 0) { - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].gfx100(550); NpcHandler.npcs[i].projectileId = 551; NpcHandler.npcs[i].endGfx = 552; } else { - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].gfx100(553); NpcHandler.npcs[i].projectileId = 554; NpcHandler.npcs[i].endGfx = 555; @@ -503,25 +505,25 @@ public class NpcCombat { r3 = Misc.random(1); } if (r3 == 0) { - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].endGfx = 157; NpcHandler.npcs[i].projectileId = 448; } else if (r3 == 1) { - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 451; } else if (r3 == 2) { - NpcHandler.npcs[i].attackType = 0; + NpcHandler.npcs[i].attackType = AttackType.MELEE.getValue(); NpcHandler.npcs[i].projectileId = -1; } break; case 2743: - NpcHandler.npcs[i].attackType = 2; + NpcHandler.npcs[i].attackType = AttackType.MAGIC.getValue(); NpcHandler.npcs[i].projectileId = 445; NpcHandler.npcs[i].endGfx = 446; break; case 2631: - NpcHandler.npcs[i].attackType = 1; + NpcHandler.npcs[i].attackType = AttackType.RANGE.getValue(); NpcHandler.npcs[i].projectileId = 443; break; } @@ -550,10 +552,10 @@ public class NpcCombat { } if (c.respawnTimer <= 0) { int damage = 0; - if (NpcHandler.npcs[i].attackType == 0) { - damage = Misc.random(NpcHandler.npcs[i].maxHit); - if (10 + Misc.random(c.getCombatAssistant().calcDef()) > Misc - .random(NpcHandler.npcs[i].attack)) { + if (NpcHandler.npcs[i].attackType == AttackType.MELEE.getValue()) { + damage = Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getMaxHit()); + if (5 + Misc.random(c.getCombatAssistant().calcDef()) > Misc + .random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getAttackBonus())) { damage = 0; } if (NpcData.cantKillYou(NpcHandler.npcs[i].npcType)) { @@ -564,10 +566,10 @@ public class NpcCombat { if (c.getPrayer().prayerActive[18] && !(NpcHandler.npcs[i].npcType == 2030)) { // protect from melee damage = 0; } else if (c.getPrayer().prayerActive[18] && NpcHandler.npcs[i].npcType == 2030) { - if (NpcHandler.npcs[i].attackType == 0) { - damage = Misc.random(NpcHandler.npcs[i].maxHit); + if (NpcHandler.npcs[i].attackType == AttackType.MELEE.getValue()) { + damage = Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getMaxHit()); } - if (10 + Misc.random(MeleeData.calculateMeleeDefence(c)) > Misc.random(NpcHandler.npcs[i].attack)) { + if (5 + Misc.random(MeleeData.calculateMeleeDefence(c)) > Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getAttackBonus())) { if (NpcHandler.npcs[i].npcType == 1158 || NpcHandler.npcs[i].npcType == 1160) damage = (damage / 2); else @@ -579,9 +581,9 @@ public class NpcCombat { } } - if (NpcHandler.npcs[i].attackType == 1) { // range - damage = Misc.random(NpcHandler.npcs[i].maxHit); - if (10 + Misc.random(c.getCombatAssistant().calculateRangeDefence()) > Misc.random(NpcHandler.npcs[i].attack)) { + if (NpcHandler.npcs[i].attackType == AttackType.RANGE.getValue()) { // range + damage = Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getMaxHit()); + if (5 + Misc.random(c.getCombatAssistant().calculateRangeDefence()) > Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getAttackBonus())) { if (NpcHandler.npcs[i].npcType == 1158 || NpcHandler.npcs[i].npcType == 1160) damage = (damage / 2); else @@ -600,10 +602,10 @@ public class NpcCombat { } } - if (NpcHandler.npcs[i].attackType == 2) { // magic - damage = Misc.random(NpcHandler.npcs[i].maxHit); + if (NpcHandler.npcs[i].attackType == AttackType.MAGIC.getValue()) { // magic + damage = Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getMaxHit()); boolean magicFailed = false; - if (10 + Misc.random(c.getCombatAssistant().mageDef()) > Misc.random(NpcHandler.npcs[i].attack)) { + if (5 + Misc.random(c.getCombatAssistant().mageDef()) > Misc.random(NPCDefinition.forId(NpcHandler.npcs[i].npcType).getAttackBonus())) { damage = 0; magicFailed = true; } @@ -632,7 +634,7 @@ public class NpcCombat { } } - if (NpcHandler.npcs[i].attackType == 3) { // fire breath + if (NpcHandler.npcs[i].attackType == AttackType.FIRE_BREATH.getValue()) { // fire breath int anti = c.getPlayerAssistant().antiFire(); switch (anti) { case 0:// has no shield diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcEmotes.java b/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcEmotes.java index 415c21ff..54739685 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcEmotes.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/combat/npcs/NpcEmotes.java @@ -1,6 +1,7 @@ package com.rs2.game.content.combat.npcs; import com.rs2.GameEngine; +import com.rs2.game.content.combat.AttackType; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Player; @@ -21,9 +22,9 @@ public enum NpcEmotes { HOB_GOBLIN(new int[] {122, 123}, 164, 165, 167), AHRIM(new int[] {2025}, 729, 404, 2304), DHAROK(new int[] {2026}, 2067, 404, 2304), - GUTHAN(new int[] {2027}, 422, 404, 2304), + GUTHAN(new int[] {2027}, 2080, 404, 2304), KARIL(new int[] {2028}, 2075, 404, 2304), - TORAG(new int[] {2029}, 0x814, 404, 2304), + TORAG(new int[] {2029}, 2068, 404, 2304), VERAC(new int[] {2030}, 2062, 404, 2304), BABY_DRAGON(new int[] {51, 52, 1589, 3376}, 25, 26, 28), CHICKEN(new int[] {41}, 55, 56, 57), @@ -39,7 +40,7 @@ public enum NpcEmotes { COW(new int[] {81, 397, 1766, 1767, 1768}, 59, 60, 62), BLOODVELD(new int[] {1618, 1619}, 1552, 1550, 1553), IMP(new int[] {708}, 169, 170, 172), - DARK_WIZARD(new int[] {172, 13}, 711, 1834, 836), + DARK_WIZARD(new int[] {172, 13, 174}, 711, 1834, 836), DUCK(new int[] {44, 45}, 7, 8, 9), SPINOLYP(new int[] {2892, 2894}, 2868, 2864, 2865), DWARF(new int[] {118, 119}, 99, 100, 102), @@ -137,11 +138,11 @@ public enum NpcEmotes { } else { switch (NpcHandler.npcs[i].npcType) { case 2745: - if (NpcHandler.npcs[i].attackType == 2) { + if (NpcHandler.npcs[i].attackType == AttackType.MAGIC.getValue()) { return 2656; - } else if (NpcHandler.npcs[i].attackType == 1) { + } else if (NpcHandler.npcs[i].attackType == AttackType.RANGE.getValue()) { return 2652; - } else if (NpcHandler.npcs[i].attackType == 0) { + } else if (NpcHandler.npcs[i].attackType == AttackType.MELEE.getValue()) { return 2655; } @@ -179,10 +180,10 @@ public enum NpcEmotes { return 2654; case 1158: GameEngine.npcHandler.spawnSecondForm(player, i); - return 6242; + return 1187; case 1160: GameEngine.npcHandler.spawnFirstForm(player, i); - return 6233; + return 1182; } } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Barrows.java b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Barrows.java index 2cb4a5b3..95c556c0 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Barrows.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Barrows.java @@ -277,7 +277,6 @@ public class Barrows { c.barrowsNpcs[4][1] = 0; c.barrowsNpcs[5][1] = 0; c.barrowsKillCount = 0; - c.getPlayerAssistant().movePlayer(3565, 3288, 0); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Dueling.java b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Dueling.java index 06ae8d9e..e53891d4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Dueling.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/Dueling.java @@ -72,7 +72,7 @@ public class Dueling { o.getPacketSender().sendMessage(player.playerName + ":duelreq:"); } } catch (Exception e) { - Misc.println("Error requesting duel."); + System.out.println("Error requesting duel."); } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/BlackKnightsFortress.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/BlackKnightsFortress.java index eb7d6b43..87f842f0 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/BlackKnightsFortress.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/BlackKnightsFortress.java @@ -5,7 +5,13 @@ import com.rs2.game.players.Player; public class BlackKnightsFortress { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("Black Knights' Fortress", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/CooksAssistant.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/CooksAssistant.java index 89cad322..b1caf62f 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/CooksAssistant.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/CooksAssistant.java @@ -14,7 +14,13 @@ public class CooksAssistant { private static final int FLOUR = 1933; public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Cook's Assistant", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/DoricsQuest.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/DoricsQuest.java index 53d60541..1ea5bd3c 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/DoricsQuest.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/DoricsQuest.java @@ -10,7 +10,13 @@ import com.rs2.game.players.Player; public class DoricsQuest { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Dorics Quest", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/GertrudesCat.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/GertrudesCat.java index d15862da..51595d94 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/GertrudesCat.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/GertrudesCat.java @@ -10,7 +10,7 @@ import com.rs2.game.players.Player; public class GertrudesCat { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Gertrudes Cat", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/LostCity.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/LostCity.java index 0c6ed4e9..86993cd9 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/LostCity.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/LostCity.java @@ -10,7 +10,13 @@ import com.rs2.game.players.Player; public class LostCity { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Lost City", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/PiratesTreasure.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/PiratesTreasure.java index 86aacac2..ca00867f 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/PiratesTreasure.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/PiratesTreasure.java @@ -11,7 +11,13 @@ public class PiratesTreasure { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Pirate's Treasure", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RestlessGhost.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RestlessGhost.java index 2ff6c985..c1325029 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RestlessGhost.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RestlessGhost.java @@ -11,7 +11,13 @@ public class RestlessGhost { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Restless Ghost", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RomeoJuliet.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RomeoJuliet.java index 826e9596..caa9eb87 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RomeoJuliet.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RomeoJuliet.java @@ -10,7 +10,13 @@ import com.rs2.game.players.Player; public class RomeoJuliet { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Romeo & Juliet", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RuneMysteries.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RuneMysteries.java index 62d9c037..3b1439d9 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RuneMysteries.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/RuneMysteries.java @@ -10,7 +10,13 @@ import com.rs2.game.players.Player; public class RuneMysteries { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Rune Mysteries", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/SheepShearer.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/SheepShearer.java index bbbb60e1..3d665087 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/SheepShearer.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/SheepShearer.java @@ -10,7 +10,13 @@ import com.rs2.game.players.Player; public class SheepShearer { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Sheep Shearer", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/ShieldArrav.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/ShieldArrav.java index 04252d11..a258df89 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/ShieldArrav.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/ShieldArrav.java @@ -20,7 +20,13 @@ public class ShieldArrav { public static void showInformation(Player player) { // Clear all lines - for (int i = 8144; i < 8195; i++) player.getPacketSender().sendString("", i); + for (int i = 8144; i < 8196; i++) player.getPacketSender().sendString("", i); + for (int i = 12174; i < (12174 + 50); i++) { + player.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { + player.getPacketSender().sendString("", i); + } // Set the title player.getPacketSender().sendString("Shield of Arrav", 8144); // Add content diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/VampyreSlayer.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/VampyreSlayer.java index 8d021f5c..fa6c8df0 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/VampyreSlayer.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/VampyreSlayer.java @@ -14,7 +14,13 @@ public class VampyreSlayer { public static void showInformation(Player client) { // Clear all lines - for (int i = 8144; i < 8195; i++) client.getPacketSender().sendString("", i); + for (int i = 8144; i < 8196; i++) client.getPacketSender().sendString("", i); + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { + client.getPacketSender().sendString("", i); + } // Set the title client.getPacketSender().sendString("Vampyre Slayer", 8144); // Add content diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/WitchsPotion.java b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/WitchsPotion.java index 9bf5a09c..63e3cd74 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/WitchsPotion.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/quests/impl/WitchsPotion.java @@ -10,7 +10,13 @@ import com.rs2.game.players.Player; public class WitchsPotion { public static void showInformation(Player client) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + client.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + client.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { client.getPacketSender().sendString("", i); } client.getPacketSender().sendString("@dre@Witch's Potion", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/agility/AgilityShortcut.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/agility/AgilityShortcut.java index 30775a4f..899ea621 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/agility/AgilityShortcut.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/agility/AgilityShortcut.java @@ -50,11 +50,15 @@ public class AgilityShortcut { } break; case 9326: - if (player.absX == 2773) { - handleAgility(player, 2, 0, 81, 3067, WALK, "You jump over the strange floor."); - } else if (player.absX == 2775) { - handleAgility(player, -2, 0, 81, 3067, WALK, "You jump over the strange floor."); - } + if (player.absX == 2770) { + handleAgility(player, 2768, 10002, 81, 3067, MOVE, "You jump over the strange floor."); + } else if (player.absX == 2768) { + handleAgility(player, 2770, 10002, 81, 3067, MOVE, "You jump over the strange floor."); + } else if (player.absX == 2773) { + handleAgility(player, 2775, 10003, 81, 3067, MOVE, "You jump over the strange floor."); + } else if (player.absX == 2775) { + handleAgility(player, 2773, 10003, 81, 3067, MOVE, "You jump over the strange floor."); + } break; case 9321: if (player.absX == 2735) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/slayer/Slayer.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/slayer/Slayer.java index 32cc0248..7190e608 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/slayer/Slayer.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/slayer/Slayer.java @@ -436,8 +436,8 @@ public class Slayer { return; } if (c.slayerPoints < 30) { - c.getPacketSender().sendMessage("This requires atleast 30 slayer points, which you don't have."); - c.getDialogueHandler().sendNpcChat1("This requires atleast 30 slayer points, which you don't have.", c.npcType, NpcHandler.getNpcListName(c.talkingNpc)); + c.getPacketSender().sendMessage("You need 30 slayer points to cancel a task."); + c.getDialogueHandler().sendNpcChat1("You need 30 slayer points to cancel a task.", c.npcType, NpcHandler.getNpcListName(c.talkingNpc)); c.nextChat = 0; return; } @@ -454,8 +454,8 @@ public class Slayer { return; } if (c.slayerPoints < 100) { - c.getPacketSender().sendMessage("This requires atleast 100 slayer points, which you don't have."); - c.getDialogueHandler().sendNpcChat1("This requires atleast 100 slayer points, which you don't have.", c.npcType, NpcHandler.getNpcListName(c.talkingNpc)); + c.getPacketSender().sendMessage("You need 100 slayer points to remove a task."); + c.getDialogueHandler().sendNpcChat1("You need 100 slayer points to remove a task.", c.npcType, NpcHandler.getNpcListName(c.talkingNpc)); c.nextChat = 0; return; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/traveling/DesertHeat.java b/2006Scape Server/src/main/java/com/rs2/game/content/traveling/DesertHeat.java index 2e003d4e..c18aeba6 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/traveling/DesertHeat.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/traveling/DesertHeat.java @@ -130,7 +130,13 @@ public class DesertHeat { } public static void showWarning(Player player) { - for (int i = 8144; i < 8195; i++) { + for (int i = 8144; i < 8196; i++) { + player.getPacketSender().sendString("", i); + } + for (int i = 12174; i < (12174 + 50); i++) { + player.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { player.getPacketSender().sendString("", i); } player.getPacketSender().sendString("@dre@DESERT WARNING", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/game/dialogues/DialogueHandler.java b/2006Scape Server/src/main/java/com/rs2/game/dialogues/DialogueHandler.java index df8c2152..cb474361 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/dialogues/DialogueHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/dialogues/DialogueHandler.java @@ -3926,7 +3926,11 @@ public class DialogueHandler { player.dialogueAction = 70; break; case 1009: - sendPlayerChat("Yes."); + if (player.talkingNpc > 0) { + sendPlayerChat("Yes."); + } else { + player.getPacketSender().closeAllWindows(); + } player.getPlayerAssistant().movePlayer(1761, 5192, 0); player.nextChat = 0; break; @@ -4024,6 +4028,11 @@ public class DialogueHandler { case 1027: player.getDialogueHandler().sendStatement("10 coins are removed from your inventory."); + //Fix Al-Kharid gate talking option by setting an object ID required by initKharid + player.objectId = 2882; + if (player.getY() == 3228) { + player.objectId = 2883; + } OtherObjects.initKharid(player, player.objectId); player.nextChat = 0; break; diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/ItemAssistant.java b/2006Scape Server/src/main/java/com/rs2/game/items/ItemAssistant.java index eca6d634..0db4deca 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/ItemAssistant.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/ItemAssistant.java @@ -487,7 +487,7 @@ public class ItemAssistant { if (item <= 0) { return false; } - if ((freeSlots() >= 1 || playerHasItem(item, 1)) + if ((freeSlots() >= 1 || playerHasItem(item)) && ItemDefinition.lookup(item).isStackable() || freeSlots() > 0 && !ItemDefinition.lookup(item).isStackable()) { for (int i = 0; i < player.playerItems.length; i++) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinitions.java b/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinitions.java index f7022ce7..957a9e6c 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinitions.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinitions.java @@ -56,7 +56,7 @@ public class ItemDefinitions { defintions.put(item.id, new Definition(item)); } } catch (FileNotFoundException fileex) { - Misc.println("items.json: file not found."); + System.out.println("items.json: file not found."); } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/UseItem.java b/2006Scape Server/src/main/java/com/rs2/game/items/UseItem.java index abf08461..66051077 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/UseItem.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/UseItem.java @@ -112,7 +112,7 @@ public class UseItem { default: if (c.playerRights == 3) { - Misc.println("Player At Object id: " + objectID + " objectX: " + System.out.println("Player At Object id: " + objectID + " objectX: " + objectX + " objectY: " + objectY + " with Item id: " + itemId); } @@ -387,7 +387,7 @@ public class UseItem { } if (player.playerRights == 3) { - Misc.println("Player used Item id: " + itemUsed + " with Item id: " + useWith); + System.out.println("Player used Item id: " + itemUsed + " with Item id: " + useWith); } } @@ -396,7 +396,7 @@ public class UseItem { default: if (c.playerRights == 3) { - Misc.println("Player used Item id: " + itemId + System.out.println("Player used Item id: " + itemId + " with Npc id: " + npcId + " With Slot : " + slot); } break; diff --git a/2006Scape Server/src/main/java/com/rs2/game/npcs/NPCDefinition.java b/2006Scape Server/src/main/java/com/rs2/game/npcs/NPCDefinition.java index 31c8f748..393832df 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/npcs/NPCDefinition.java +++ b/2006Scape Server/src/main/java/com/rs2/game/npcs/NPCDefinition.java @@ -2,25 +2,35 @@ package com.rs2.game.npcs; import java.io.FileInputStream; import java.io.IOException; -import java.util.List; +import java.lang.reflect.Type; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.*; +import java.io.*; +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.reflect.TypeToken; import com.rs2.util.XStreamUtil; public class NPCDefinition { - - private static NPCDefinition[] definitions = null; + + private static HashMap definitions = new HashMap<>(); public static void init() throws IOException { - @SuppressWarnings("unchecked") - List defs = (List) XStreamUtil.getXStream().fromXML(new FileInputStream("data/cfg/npcDefinitions.xml")); - definitions = new NPCDefinition[3790]; + Gson gson = new Gson(); + Type type = new TypeToken>(){}.getType(); + List defs; + try (FileReader reader = new FileReader("data/cfg/npcDefinitions.json")) { + defs = gson.fromJson(reader, type); + } for (NPCDefinition def : defs) { - definitions[def.getId()] = def; + definitions.put(def.getId(), def); } } public static NPCDefinition forId(int id) { - NPCDefinition d = definitions[id]; + NPCDefinition d = definitions.get(id); if (d == null) { d = produceDefinition(id); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcActions.java b/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcActions.java index 50881c7a..74f0962d 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcActions.java +++ b/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcActions.java @@ -1137,7 +1137,7 @@ public class NpcActions { break; default: if (player.playerRights == 3) { - Misc.println("Third Click NPC : " + npcType); + System.out.println("Third Click NPC : " + npcType); } break; diff --git a/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcData.java b/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcData.java index a66766ee..c77c7cad 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcData.java +++ b/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcData.java @@ -1,5 +1,6 @@ package com.rs2.game.npcs; +import com.rs2.game.content.combat.AttackType; import com.rs2.game.content.minigames.FightCaves; import com.rs2.game.players.PlayerHandler; import com.rs2.util.Misc; @@ -227,8 +228,8 @@ public class NpcData { return 3; case 2745: - if (NpcHandler.npcs[i].attackType == 1 - || NpcHandler.npcs[i].attackType == 2) { + if (NpcHandler.npcs[i].attackType == AttackType.RANGE.getValue() + || NpcHandler.npcs[i].attackType == AttackType.MAGIC.getValue()) { return 5; } else { return 2; @@ -279,23 +280,26 @@ public class NpcData { return 25; } } - + + /** + * Distance required to attack + * It's also worth checking {@link NpcHandler#distanceRequired} + */ public static int distanceRequired(int i) { - int distanceNeeded = 1; - if (NpcHandler.npcs[i].attackType == 1) { - return distanceNeeded += 7; - } else if (NpcHandler.npcs[i].attackType == 2) { - return distanceNeeded += 9; - } else if (NpcHandler.npcs[i].attackType > 2) { - return distanceNeeded += 4; + if (NpcHandler.npcs[i].attackType == AttackType.RANGE.getValue()) { + return 8; + } else if (NpcHandler.npcs[i].attackType == AttackType.MAGIC.getValue()) { + return 10; + } else if (NpcHandler.npcs[i].attackType > AttackType.MAGIC.getValue()) { + return 5; } switch (NpcHandler.npcs[i].npcType) { case 2562: - return distanceNeeded += 1; + return 2; case 2881:// dag kings case 2882: case 3200:// chaos ele - return distanceNeeded += 7; + return 8; case 2552: case 2553: case 2556: @@ -305,11 +309,11 @@ public class NpcData { case 2560: case 2564: case 2565: - return distanceNeeded += 8; + return 9; // things around dags case 2892: case 2894: - return distanceNeeded += 9; + return 10; case 907 : // Kolodian case 908 : case 909 : @@ -324,16 +328,18 @@ public class NpcData { case 1158 : // Kalphite queen form 1 case 1160 : // Kalphite queen form 2 case 2025 : // Ahrim - return distanceNeeded += 9; + return 10; case 2028 : // Karil case 2631 : // Tok-Xil (Tzhaar ranging guy) case 1183 : // Elf ranger - return distanceNeeded += 7; + case 172: // dark wizards + case 174: + return 8; case 941 : // Green drag case 50 : // Kbd - return distanceNeeded += 5; + return 6; } - return distanceNeeded; + return 1; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcHandler.java b/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcHandler.java index 75866c1f..92a23442 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/npcs/NpcHandler.java @@ -7,6 +7,7 @@ import com.rs2.GameEngine; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; +import com.rs2.game.content.combat.AttackType; import com.rs2.game.content.combat.CombatConstants; import com.rs2.game.content.combat.npcs.NpcAggressive; import com.rs2.game.content.combat.npcs.NpcCombat; @@ -153,7 +154,8 @@ public class NpcHandler { try { NPCDefinition.init(); } catch (Exception e) { - //System.out.println("npc def error"); + System.out.println("npc def error: "); + e.printStackTrace(); } } @@ -263,7 +265,7 @@ public class NpcHandler { } } if (slot == -1) { - // Misc.println("No Free Slot"); + // System.out.println("No Free Slot"); return; // no free slot found } Npc newNPC = new Npc(slot, npcType); @@ -310,7 +312,7 @@ public class NpcHandler { } } if (slot == -1) { - // Misc.println("No Free Slot"); + // System.out.println("No Free Slot"); return; // no free slot found } Npc newNPC = new Npc(slot, npcType); @@ -907,21 +909,21 @@ public class NpcHandler { public static boolean multiAttacks(int i) { switch (npcs[i].npcType) { case 1158: //kq - if (npcs[i].attackType == 2) { + if (npcs[i].attackType == AttackType.MAGIC.getValue()) { return true; } case 1160: //kq - if (npcs[i].attackType == 1) { + if (npcs[i].attackType == AttackType.RANGE.getValue()) { return true; } case 2558: return true; case 2562: - if (npcs[i].attackType == 2) { + if (npcs[i].attackType == AttackType.MAGIC.getValue()) { return true; } case 2550: - if (npcs[i].attackType == 1) { + if (npcs[i].attackType == AttackType.RANGE.getValue()) { return true; } default: @@ -1138,7 +1140,8 @@ public class NpcHandler { int points = c.getSlayer().getDifficulty(c.slayerTask) * 4; c.slayerTask = -1; c.slayerPoints += points; - c.getPacketSender().sendMessage("You completed your slayer task. You obtain " + points + " slayer points. Please talk to your slayer master."); + c.getPacketSender().sendMessage("You completed your slayer task. You obtain " + points + " slayer points."); + c.getPacketSender().sendMessage("Please talk to your slayer master for a new task."); } } } @@ -1273,6 +1276,8 @@ public class NpcHandler { /** * Distanced required to attack + * If NPCs are maging in melee distance check that the NPC ID is actually in here. + * It's also worth checking {@link NpcData#distanceRequired} **/ public static int distanceRequired(int i) { switch (npcs[i].npcType) { @@ -1282,6 +1287,8 @@ public class NpcHandler { case 50: case 2562: return 2; + case 172: // dark wizards + case 174: case 2881:// dag kings case 2882: case 3200:// chaos ele @@ -1420,7 +1427,7 @@ public class NpcHandler { case 1158: return 30; case 2558: - if (npcs[i].attackType == 2) { + if (npcs[i].attackType == AttackType.MAGIC.getValue()) { return 28; } else { return 68; @@ -1467,7 +1474,7 @@ public class NpcHandler { spawn.getStrength()); } } catch (FileNotFoundException fileex) { - Misc.println("spawns.json: file not found."); + System.out.println("spawns.json: file not found."); } } @@ -1484,13 +1491,13 @@ public class NpcHandler { try { characterfile = new BufferedReader(new FileReader(FileName)); } catch (FileNotFoundException fileex) { - Misc.println(FileName + ": file not found."); + System.out.println(FileName + ": file not found."); return false; } try { line = characterfile.readLine(); } catch (IOException ioexception) { - Misc.println(FileName + ": error loading file."); + System.out.println(FileName + ": error loading file."); // return false; } while (EndOfFile == false && line != null) { @@ -1581,7 +1588,7 @@ public class NpcHandler { newNPCList(npc.getId(), npc.getName(), npc.getCombat(), npc.getHitpoints()); } } catch (FileNotFoundException fileex) { - Misc.println("npc.json: file not found."); + System.out.println("npc.json: file not found."); } } @@ -1597,14 +1604,14 @@ public class NpcHandler { try { characterfile = new BufferedReader(new FileReader(FileName)); } catch (FileNotFoundException fileex) { - Misc.println(FileName + ": file not found."); + System.out.println(FileName + ": file not found."); return false; } try { line = characterfile.readLine(); // characterfile.close(); } catch (IOException ioexception) { - Misc.println(FileName + ": error loading file."); + System.out.println(FileName + ": error loading file."); // return false; } while (EndOfFile == false && line != null) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/npcs/drops/NPCDropsHandler.java b/2006Scape Server/src/main/java/com/rs2/game/npcs/drops/NPCDropsHandler.java index 51a2da11..3542999c 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/npcs/drops/NPCDropsHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/npcs/drops/NPCDropsHandler.java @@ -28,7 +28,7 @@ public class NPCDropsHandler { try { npcDrops = new Gson().fromJson(new FileReader("./data/cfg/npcdrops.json"), NpcDrop[].class); } catch (FileNotFoundException fileex) { - Misc.println("npcdrops.json: file not found."); + System.out.println("npcdrops.json: file not found."); } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectsActions.java b/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectsActions.java index e7226828..7ff63fc8 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectsActions.java +++ b/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectsActions.java @@ -106,10 +106,15 @@ public class ObjectsActions { PassDoor.processDoor(player, objectType); AbyssalHandler.handleAbyssalTeleport(player, objectType); OpenObject.interactObject(player, objectType); - if (Stalls.isObject(objectType)) { + if (Stalls.isObject(objectType)) { Stalls.attemptStall(player, objectType, objectX, objectY); return; } + //Prevent players getting stuck in level 28 wildy + if (objectType == 1752 && objectX == 3154 && objectY == 3743) { + player.getPacketSender().sendMessage("You find that ladder leads nowhere..."); + return; + } switch (objectType) { case 6969: // Swamp Boaty if (player.objectX == 3523 && player.objectY == 3284) diff --git a/2006Scape Server/src/main/java/com/rs2/game/players/Player.java b/2006Scape Server/src/main/java/com/rs2/game/players/Player.java index 46fd3c61..b40fb4d5 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/players/Player.java +++ b/2006Scape Server/src/main/java/com/rs2/game/players/Player.java @@ -606,7 +606,7 @@ public abstract class Player { System.out.println("EverythingRS API Disabled, highscores not saved!"); } - Misc.println("[DEREGISTERED]: " + playerName + ""); + System.out.println("[DEREGISTERED]: " + playerName + ""); // HostList.getHostList().remove(session); CycleEventHandler.getSingleton().stopEvents(this); disconnected = true; @@ -1342,7 +1342,7 @@ public abstract class Player { public int miningAxe = -1, woodcuttingAxe = -1; - public boolean initialized, musicOn = true, luthas, + public boolean initialized, musicOn = true, soundOn = true, luthas, playerIsCooking, disconnected, ruleAgreeButton, rebuildNPCList, isActive, isKicked, isSkulled, friendUpdate, newPlayer, diff --git a/2006Scape Server/src/main/java/com/rs2/game/players/PlayerHandler.java b/2006Scape Server/src/main/java/com/rs2/game/players/PlayerHandler.java index 6641c815..60ba61e4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/players/PlayerHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/players/PlayerHandler.java @@ -45,7 +45,7 @@ public class PlayerHandler { players[slot].isActive = true; players[slot].connectedFrom = client1.isBot ? "127.0.0.1" : ((InetSocketAddress) client1.getSession().getRemoteAddress()).getAddress().getHostAddress(); if (Constants.SERVER_DEBUG) { - Misc.println("Player Slot " + slot + " slot 0 " + players[0] + System.out.println("Player Slot " + slot + " slot 0 " + players[0] + " Player Hit " + players[slot]); } return true; diff --git a/2006Scape Server/src/main/java/com/rs2/game/players/PlayerSave.java b/2006Scape Server/src/main/java/com/rs2/game/players/PlayerSave.java index b5984e2c..70a4b327 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/players/PlayerSave.java +++ b/2006Scape Server/src/main/java/com/rs2/game/players/PlayerSave.java @@ -44,14 +44,14 @@ public class PlayerSave { //it's the .gitignore :P return 0; } - Misc.println(playerName + ": character file not found."); + System.out.println(playerName + ": character file not found."); player.newPlayer = false; return 0; } try { line = characterfile.readLine(); } catch (IOException ioexception) { - Misc.println(playerName + ": error loading file."); + System.out.println(playerName + ": error loading file."); return 3; } while (EndOfFile == false && line != null) { @@ -209,6 +209,9 @@ public class PlayerSave { case "musicOn": player.musicOn = Boolean.parseBoolean(token2); break; + case "soundOn": + player.soundOn = Boolean.parseBoolean(token2); + break; case "barrowsNpcs": player.barrowsNpcs[Integer.parseInt(token3[0])][1] = Integer.parseInt(token3[1]); break; @@ -728,6 +731,8 @@ public class PlayerSave { characterfile.newLine(); characterfile.write("musicOn = " + player.musicOn); characterfile.newLine(); + characterfile.write("soundOn = " + player.soundOn); + characterfile.newLine(); characterfile.write("needsNewTask = " + player.needsNewTask); characterfile.newLine(); characterfile.write("luthas = " + player.luthas); @@ -905,7 +910,7 @@ public class PlayerSave { characterfile.newLine(); characterfile.close(); } catch (IOException ioexception) { - Misc.println(player.playerName + ": error writing file."); + System.out.println(player.playerName + ": error writing file."); return false; } return true; diff --git a/2006Scape Server/src/main/java/com/rs2/game/players/Trading.java b/2006Scape Server/src/main/java/com/rs2/game/players/Trading.java index ef0e5a81..7dfe9042 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/players/Trading.java +++ b/2006Scape Server/src/main/java/com/rs2/game/players/Trading.java @@ -70,7 +70,7 @@ public class Trading { player.getPacketSender().sendMessage("Other player is busy at the moment."); } } catch (Exception e) { - Misc.println("Error requesting trade."); + System.out.println("Error requesting trade."); } } public boolean isCloseTo(Client tradedPlayer) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/shops/ShopHandler.java b/2006Scape Server/src/main/java/com/rs2/game/shops/ShopHandler.java index cde269aa..e0615e7e 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/shops/ShopHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/shops/ShopHandler.java @@ -142,7 +142,7 @@ public class ShopHandler { totalshops++; } } catch (FileNotFoundException fileex) { - Misc.println("shops.json: file not found."); + System.out.println("shops.json: file not found."); } } @@ -157,13 +157,13 @@ public class ShopHandler { try { characterfile = new BufferedReader(new FileReader("./data/cfg/" + FileName)); } catch (FileNotFoundException fileex) { - Misc.println(FileName + ": file not found."); + System.out.println(FileName + ": file not found."); return false; } try { line = characterfile.readLine(); } catch (IOException ioexception) { - Misc.println(FileName + ": error loading file."); + System.out.println(FileName + ": error loading file."); } while (EndOfFile == false && line != null) { line = line.trim(); diff --git a/2006Scape Server/src/main/java/com/rs2/net/PacketSender.java b/2006Scape Server/src/main/java/com/rs2/net/PacketSender.java index 0214a11b..66dd8761 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/PacketSender.java +++ b/2006Scape Server/src/main/java/com/rs2/net/PacketSender.java @@ -191,7 +191,7 @@ public class PacketSender { player.getItemAssistant().addSpecialBar(player.playerEquipment[player.playerWeapon]); player.saveTimer = Constants.SAVE_TIMER; player.saveCharacter = true; - Misc.println((player.isBot ? "[BOT-REGISTERED]" : "[REGISTERED]") + ": " + player.playerName + " (level-" + player.calculateCombatLevel() + ")"); + System.out.println((player.isBot ? "[BOT-REGISTERED]" : "[REGISTERED]") + ": " + player.playerName + " (level-" + player.calculateCombatLevel() + ")"); player.handler.updatePlayer(player, player.outStream); player.handler.updateNPC(player, player.outStream); player.flushOutStream(); @@ -1165,6 +1165,9 @@ public class PacketSender { */ public PacketSender sendSound(int id, int volume, int delay) { + if (player != null && !player.soundOn) { + return this; + } frame174(id, volume, delay); return this; } diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/PacketHandler.java b/2006Scape Server/src/main/java/com/rs2/net/packets/PacketHandler.java index 7b4de015..99fc4d52 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/PacketHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/PacketHandler.java @@ -1,6 +1,7 @@ package com.rs2.net.packets; import com.rs2.Constants; +import com.rs2.event.impl.ObjectFifthClickEvent; import com.rs2.game.dialogues.Dialogue; import com.rs2.game.players.Player; import com.rs2.net.Packet; @@ -135,6 +136,7 @@ public class PacketHandler { packetId[121] = cr; packetId[210] = cr; packetId[253] = new ItemClick2OnGroundItem(); + packetId[228] = new ClickObject(); // packetId[ContinueDialoguePacketHandler.CONTINUE] = new // ContinueDialoguePacketHandler(); } @@ -172,7 +174,7 @@ public class PacketHandler { } } else { player.disconnected = true; - System.out.println(player.playerName + "is sending invalid PacketType: " + packetType + ". PacketSize: " + packetSize); + System.out.println(player.playerName + " is sending invalid PacketType: " + packetType + ". PacketSize: " + packetSize); } } diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickObject.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickObject.java index 4495ece6..797d240d 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickObject.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickObject.java @@ -23,7 +23,7 @@ import com.rs2.world.clip.Region; public class ClickObject implements PacketType { public static final int FIRST_CLICK = 132, SECOND_CLICK = 252, - THIRD_CLICK = 70, FOURTH_CLICK = 234; + THIRD_CLICK = 70, FOURTH_CLICK = 234, FIFTH_CLICK = 228; public void onObjectReached(Player player, Consumer consumer) { if (System.currentTimeMillis() - player.clickDelay < 300) @@ -115,6 +115,12 @@ public class ClickObject implements PacketType { player.objectY = packet.readUnsignedWordBigEndianA(); onObjectReached(player, (p) -> completeObjectClick(p, 4)); break; + case FIFTH_CLICK: + player.objectId = packet.readUnsignedWordA(); + player.objectY = packet.readUnsignedWordA(); + player.objectX = packet.readUnsignedWord(); + onObjectReached(player, (p) -> completeObjectClick(p, 5)); + break; } } @@ -219,7 +225,13 @@ public class ClickObject implements PacketType { case 8929: player.fade(2442, 10147, 0); break; - + + case 12230: // Mole lair rope + if (player.objectX == 1752 && player.objectY == 5136) { + player.getPlayerAssistant().movePlayer(2997, 3375, 0); + } + break; + case 1568: if (player.objectX == 2399 && player.objectY == 3099) { player.getPacketSender() diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingStuff.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingStuff.java index bc8473cc..93abc61a 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingStuff.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingStuff.java @@ -32,7 +32,7 @@ public class ClickingStuff implements PacketType { player.tradeConfirmed2 = false; player.getPacketSender().sendMessage("@red@Trade has been declined."); opponent.getPacketSender().sendMessage("@red@Other player has declined the trade."); - Misc.println("trade reset"); + System.out.println("trade reset"); player.getTrading().declineTrade(); opponent.getTrading().declineTrade(); } diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/Commands.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/Commands.java index 72ff7975..be577777 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/Commands.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/Commands.java @@ -65,6 +65,10 @@ public class Commands implements PacketType { } case "xprate": if(Constants.VARIABLE_XP_RATE) { + if (arguments.length < 1 || !arguments[0].equals("confirm")) { + player.getPacketSender().sendMessage("You must type \"::xprate confirm\" to view the dialogue to change your XP rate."); + return; + } if (player.getXPRate() == Constants.VARIABLE_XP_RATES[0]) { player.getDialogueHandler().sendDialogues(10005, 2244); return; @@ -190,7 +194,7 @@ public class Commands implements PacketType { if (count != 1) { player.getPacketSender().sendMessage("There are currently " + count + " " + (playerCommand.equalsIgnoreCase("players") ? "players" : "player shops") + " online (" + PlayerHandler.getNonPlayerCount() + " staff member online)."); } else { - player.getPacketSender().sendMessage("There is currently " + count + " " + (playerCommand.equalsIgnoreCase("players") ? "player" : "player shop") + " online (\" + PlayerHandler.getNonPlayerCount() + \" staff member online)."); + player.getPacketSender().sendMessage("There is currently " + count + " " + (playerCommand.equalsIgnoreCase("players") ? "player" : "player shop") + " online (" + PlayerHandler.getNonPlayerCount() + " staff member online)."); } String[] players = new String[count]; @@ -205,7 +209,13 @@ public class Commands implements PacketType { // Clear all lines - for (int i = 8144; i < 8195; i++) player.getPacketSender().sendString("", i); + for (int i = 8144; i < 8196; i++) player.getPacketSender().sendString("", i); + for (int i = 12174; i < (12174 + 50); i++) { + player.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { + player.getPacketSender().sendString("", i); + } player.getPacketSender().sendString("@dre@" + (playerCommand.equalsIgnoreCase("players") ? "Players" : "Player Shops"), 8144); @@ -322,9 +332,14 @@ public class Commands implements PacketType { }; // Clear all lines - for (int i = 8144; i < 8195; i++) + for (int i = 8144; i < 8196; i++) player.getPacketSender().sendString("", i); - + for (int i = 12174; i < (12174 + 50); i++) { + player.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { + player.getPacketSender().sendString("", i); + } player.getPacketSender().sendString("@dre@Commands", 8144); int commandsLineNumber = 8147; @@ -396,7 +411,13 @@ public class Commands implements PacketType { }; // Clear all lines - for (int i = 8144; i < 8195; i++) player.getPacketSender().sendString("", i); + for (int i = 8144; i < 8196; i++) player.getPacketSender().sendString("", i); + for (int i = 12174; i < (12174 + 50); i++) { + player.getPacketSender().sendString( "", i); + } + for (int i = 14945; i < (14945 + 100); i++) { + player.getPacketSender().sendString("", i); + } player.getPacketSender().sendString("@dre@Highscores", 8144); diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemClick3.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemClick3.java index 7550b89d..b61ee965 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemClick3.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemClick3.java @@ -101,7 +101,7 @@ public class ItemClick3 implements PacketType { default: if (player.playerRights == 3) { - Misc.println(player.playerName + " - Item3rdOption: " + itemId + System.out.println(player.playerName + " - Item3rdOption: " + itemId + " : " + itemId11 + " : " + itemId1); } break; diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemOnGroundItem.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemOnGroundItem.java index f5d0c5ab..eeb86103 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemOnGroundItem.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ItemOnGroundItem.java @@ -36,7 +36,7 @@ public class ItemOnGroundItem implements PacketType { default: if (player.playerRights == 3) { - Misc.println("ItemUsed " + itemUsed + " on Ground Item " + System.out.println("ItemUsed " + itemUsed + " on Ground Item " + groundItem); } break; diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/RemoveItem.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/RemoveItem.java index 9dcd6975..298393c6 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/RemoveItem.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/RemoveItem.java @@ -23,6 +23,10 @@ public class RemoveItem implements PacketType { if (!RareProtection.removeItem(player, removeId)) { return; } + + if (interfaceId == 1688 && removeSlot == 3) { + player.getPlayerAssistant().resetAutocast(); + } player.endCurrentTask(); diff --git a/2006Scape Server/src/main/java/com/rs2/util/Misc.java b/2006Scape Server/src/main/java/com/rs2/util/Misc.java index 064f31ff..4ec2e61a 100644 --- a/2006Scape Server/src/main/java/com/rs2/util/Misc.java +++ b/2006Scape Server/src/main/java/com/rs2/util/Misc.java @@ -90,22 +90,6 @@ public class Misc { return str; } - public static void print_debug(String str) { - System.out.print(str); - } - - public static void println_debug(String str) { - System.out.println(str); - } - - public static void print(String str) { - System.out.print(str); - } - - public static void println(String str) { - System.out.println(str); - } - public static String Hex(byte data[]) { return Hex(data, 0, data.length); } diff --git a/2006Scape Server/src/main/java/com/rs2/world/GlobalDropsHandler.java b/2006Scape Server/src/main/java/com/rs2/world/GlobalDropsHandler.java index 54f39162..56f723e0 100644 --- a/2006Scape Server/src/main/java/com/rs2/world/GlobalDropsHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/world/GlobalDropsHandler.java @@ -65,7 +65,7 @@ public class GlobalDropsHandler { } catch (Exception e) { e.printStackTrace(); } - Misc.println("Loaded " + globalDrops.size() + " global drops."); + System.out.println("Loaded " + globalDrops.size() + " global drops."); for (Player player : PlayerHandler.players) { Client player2 = (Client) player; diff --git a/2006Scape Server/src/main/java/org/apollo/game/session/ApolloHandler.java b/2006Scape Server/src/main/java/org/apollo/game/session/ApolloHandler.java index 6c902c4c..3f5af95d 100644 --- a/2006Scape Server/src/main/java/org/apollo/game/session/ApolloHandler.java +++ b/2006Scape Server/src/main/java/org/apollo/game/session/ApolloHandler.java @@ -56,7 +56,7 @@ public final class ApolloHandler extends ChannelInboundHandlerAdapter { @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable e) { - if (!e.getMessage().contains("An existing connection was forcibly closed by the remote host")) { + if (!e.getMessage().contains("An existing connection was forcibly closed by the remote host") && !e.getMessage().contains("Connection reset by peer")) { logger.log(Level.WARNING, "Exception occured for channel: " + ctx.channel() + ", closing...", e); } ctx.channel().close();